File tree Expand file tree Collapse file tree 3 files changed +17
-10
lines changed
Expand file tree Collapse file tree 3 files changed +17
-10
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,16 @@ loom {
2020 enableTransitiveAccessWideners = true
2121}
2222
23+ repositories {
24+ // You can add more repositories here if you plan
25+ // on using environment-specific dependencies.
26+ // If you simply want to add a global plugin repository,
27+ // you can add it to the `settings.gradle.kts` file
28+ // in the base of the project and gradle will do the
29+ // rest for you.
30+ // maven(...)
31+ }
32+
2333val common: Configuration by configurations.creating {
2434 configurations.compileClasspath.get().extendsFrom(this )
2535 configurations.runtimeClasspath.get().extendsFrom(this )
@@ -61,9 +71,6 @@ dependencies {
6171 includeMod(" net.fabricmc:fabric-language-kotlin:$kotlinFabricVersion " )
6272 includeMod(" baritone-api:baritone-unoptimized-fabric:1.10.2" )
6373
64- // Disable reflections logging
65- include(" org.slf4j:slf4j-nop:2.0.13" )
66-
6774 // Common (Do not touch)
6875 common(project(" :common" , configuration = " namedElements" )) { isTransitive = false }
6976 shadowBundle(project(" :common" , configuration = " transformProductionFabric" )) { isTransitive = false }
Original file line number Diff line number Diff line change 3535repositories {
3636 // You can add more repositories here if you plan
3737 // on using environment-specific dependencies.
38- // If you simply want to add a global repository,
38+ // If you simply want to add a global plugin repository,
3939 // you can add it to the `settings.gradle.kts` file
4040 // in the base of the project and gradle will do the
4141 // rest for you.
@@ -90,9 +90,6 @@ dependencies {
9090 implementation(" io.github.llamalad7:mixinextras-forge:$mixinExtrasVersion " )
9191 compileOnly(annotationProcessor(" io.github.llamalad7:mixinextras-common:$mixinExtrasVersion " )!! )
9292
93- // Disable reflections logging
94- include(" org.slf4j:slf4j-nop:2.0.13" )
95-
9693 // Common (Do not touch)
9794 common(project(" :common" , configuration = " namedElements" )) { isTransitive = false }
9895 shadowBundle(project(path = " :common" , configuration = " transformProductionForge" )) { isTransitive = false }
Original file line number Diff line number Diff line change @@ -21,6 +21,12 @@ loom {
2121}
2222
2323repositories {
24+ // You can add more repositories here if you plan
25+ // on using environment-specific dependencies.
26+ // If you simply want to add a global plugin repository,
27+ // you can add it to the `settings.gradle.kts` file
28+ // in the base of the project and gradle will do the
29+ // rest for you.
2430 maven(" https://maven.neoforged.net/releases/" )
2531 maven(" https://thedarkcolour.github.io/KotlinForForge/" )
2632}
@@ -64,9 +70,6 @@ dependencies {
6470 includeMod(" thedarkcolour:kotlinforforge-neoforge:$kotlinForgeVersion " )
6571 includeMod(" baritone-api:baritone-unoptimized-neoforge:1.10.2" )
6672
67- // Disable reflections logging
68- include(" org.slf4j:slf4j-nop:2.0.13" )
69-
7073 // Common (Do not touch)
7174 common(project(" :common" , configuration = " namedElements" )) { isTransitive = false }
7275 shadowBundle(project(path = " :common" , configuration = " transformProductionNeoForge" )) { isTransitive = false }
You can’t perform that action at this time.
0 commit comments