1
0
mirror of https://github.com/Suiranoil/SkinRestorer.git synced 2026-01-16 04:42:12 +00:00

replace single quotes with double quotes in groovy

This commit is contained in:
2024-06-30 14:50:37 +03:00
parent d07edf6913
commit 299601998d
5 changed files with 38 additions and 38 deletions

View File

@@ -1,16 +1,16 @@
pluginManagement {
repositories {
maven {
name = 'Architectury'
url = 'https://maven.architectury.dev/'
name = "Architectury"
url = "https://maven.architectury.dev/"
}
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
name = "Fabric"
url = "https://maven.fabricmc.net/"
}
maven {
name = 'Forge'
url = 'https://files.minecraftforge.net/maven/'
name = "Forge"
url = "https://files.minecraftforge.net/maven/"
}
mavenCentral()
gradlePluginPortal()
@@ -19,6 +19,6 @@ pluginManagement {
rootProject.name = "skin-restorer"
include 'common'
include 'fabric'
include 'neoforge'
include "common"
include "fabric"
include "neoforge"