Skip to content

Commit ab5e2f6

Browse files
committed
Replace deprecated Groovy syntax
Signed-off-by: Lilly Rose Berner <lilly@lostluma.net>
1 parent 4d7590c commit ab5e2f6

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

platforms/fabric/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ dependencies {
4040

4141
include(libs.battery)
4242

43-
common(project(path: ":platforms:common", configuration: "namedElements")) { transitive false }
44-
shadowBundle(project(path: ":platforms:common", configuration: "transformProductionFabric")) { transitive false }
43+
common(project(path: ":platforms:common", configuration: "namedElements")) { transitive = false }
44+
shadowBundle(project(path: ":platforms:common", configuration: "transformProductionFabric")) { transitive = false }
4545

46-
common(project(path: ":platforms:textile", configuration: "namedElements")) { transitive false }
47-
shadowBundle(project(path: ":platforms:textile", configuration: "transformProductionFabric")) { transitive false }
46+
common(project(path: ":platforms:textile", configuration: "namedElements")) { transitive = false }
47+
shadowBundle(project(path: ":platforms:textile", configuration: "transformProductionFabric")) { transitive = false }
4848
}
4949

5050
shadowJar {

platforms/forge/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ dependencies {
4343
include(libs.mixinextras.forge)
4444
implementation(libs.mixinextras.forge)
4545

46-
common(project(path: ":platforms:common", configuration: "namedElements")) { transitive false }
46+
common(project(path: ":platforms:common", configuration: "namedElements")) { transitive = false }
4747
shadowCommon(project(path: ":platforms:common", configuration: "transformProductionForge")) { transitive = false }
4848
}
4949

platforms/neoforge/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636

3737
include(libs.battery)
3838

39-
common(project(path: ":platforms:common", configuration: "namedElements")) { transitive false }
39+
common(project(path: ":platforms:common", configuration: "namedElements")) { transitive = false }
4040
shadowCommon(project(path: ":platforms:common", configuration: "transformProductionNeoForge")) { transitive = false }
4141
}
4242

platforms/quilt/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ dependencies {
4141

4242
include(libs.battery)
4343

44-
common(project(path: ":platforms:common", configuration: "namedElements")) { transitive false }
45-
shadowBundle(project(path: ":platforms:common", configuration: "transformProductionQuilt")) { transitive false }
44+
common(project(path: ":platforms:common", configuration: "namedElements")) { transitive = false }
45+
shadowBundle(project(path: ":platforms:common", configuration: "transformProductionQuilt")) { transitive = false }
4646

47-
common(project(path: ":platforms:textile", configuration: "namedElements")) { transitive false }
48-
shadowBundle(project(path: ":platforms:textile", configuration: "transformProductionQuilt")) { transitive false }
47+
common(project(path: ":platforms:textile", configuration: "namedElements")) { transitive = false }
48+
shadowBundle(project(path: ":platforms:textile", configuration: "transformProductionQuilt")) { transitive = false }
4949
}
5050

5151
shadowJar {

platforms/textile/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ dependencies {
2121

2222
modApi(libs.modmenu)
2323

24-
compileOnly(project(path: ':platforms:common', configuration: 'namedElements')) { transitive false }
24+
compileOnly(project(path: ':platforms:common', configuration: 'namedElements')) { transitive = false }
2525
}

0 commit comments

Comments
 (0)