Skip to content

Commit f70bb3a

Browse files
committed
Removed slf4j nop
1 parent 374cef0 commit f70bb3a

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

fabric/build.gradle.kts

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff 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+
2333
val 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 }

forge/build.gradle.kts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ loom {
3535
repositories {
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 }

neoforge/build.gradle.kts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ loom {
2121
}
2222

2323
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.
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 }

0 commit comments

Comments
 (0)