Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-19 09:20:08 +01:00
Update Upstream
1f21162 Ensure the SLF4J ban is being applied
Dieser Commit ist enthalten in:
Ursprung
a183425642
Commit
457861b879
@ -42,14 +42,6 @@ fun Project.applyCommonConfiguration() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
configurations.findByName("compileClasspath")?.apply {
|
|
||||||
resolutionStrategy.componentSelection {
|
|
||||||
withModule("org.slf4j:slf4j-api") {
|
|
||||||
reject("No SLF4J allowed on compile classpath")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
plugins.withId("java") {
|
plugins.withId("java") {
|
||||||
the<JavaPluginExtension>().toolchain {
|
the<JavaPluginExtension>().toolchain {
|
||||||
languageVersion.set(JavaLanguageVersion.of(16))
|
languageVersion.set(JavaLanguageVersion.of(16))
|
||||||
|
@ -108,6 +108,16 @@ fun Project.applyPlatformAndCoreConfiguration() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (name != "worldedit-fabric") {
|
||||||
|
configurations["compileClasspath"].apply {
|
||||||
|
resolutionStrategy.componentSelection {
|
||||||
|
withModule("org.slf4j:slf4j-api") {
|
||||||
|
reject("No SLF4J allowed on compile classpath")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// tasks.named("check").configure {
|
// tasks.named("check").configure {
|
||||||
// dependsOn("checkstyleMain", "checkstyleTest")
|
// dependsOn("checkstyleMain", "checkstyleTest")
|
||||||
// }
|
// }
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren