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,5 +1,5 @@
plugins {
id 'com.github.johnrengelman.shadow'
id "com.github.johnrengelman.shadow"
}
architectury {
@@ -17,7 +17,7 @@ configurations {
developmentNeoForge.extendsFrom common
// Files in this configuration will be bundled into your mod using the Shadow plugin.
// Don't use the `shadow` configuration from the plugin itself as it's meant for excluding files.
// Don"t use the `shadow` configuration from the plugin itself as it"s meant for excluding files.
shadowBundle {
canBeResolved = true
canBeConsumed = false
@@ -26,29 +26,29 @@ configurations {
repositories {
maven {
name = 'NeoForged'
url = 'https://maven.neoforged.net/releases'
name = "NeoForged"
url = "https://maven.neoforged.net/releases"
}
}
dependencies {
neoForge "net.neoforged:neoforge:$rootProject.neoforge_loader_version"
common(project(path: ':common', configuration: 'namedElements')) { transitive false }
shadowBundle project(path: ':common', configuration: 'transformProductionNeoForge')
common(project(path: ":common", configuration: "namedElements")) { transitive false }
shadowBundle project(path: ":common", configuration: "transformProductionNeoForge")
}
processResources {
inputs.property 'version', project.version
inputs.property "version", project.version
filesMatching('META-INF/neoforge.mods.toml') {
filesMatching("META-INF/neoforge.mods.toml") {
expand version: project.version
}
}
shadowJar {
configurations = [project.configurations.shadowBundle]
archiveClassifier = 'dev-shadow'
archiveClassifier = "dev-shadow"
}
remapJar {