Skip to content

Commit

Permalink
temp fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceWalkerRS committed Dec 12, 2024
1 parent 63b9464 commit 1ed5829
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,16 @@ def setUpModule(project, String... dependencies) {
modules.each { modulePath ->
implementation project.dependencies.project(path: modulePath, configuration: 'namedElements')
}

// temporary fix
// Loom's library processor manager does not run on server-only
// projects for Minecraft versions without bundle metadata
if (!isCore && project.environment == 'server') {
implementation 'org.slf4j:slf4j-api:2.0.1'
implementation 'org.apache.logging.log4j:log4j-slf4j2-impl:2.19.0'
implementation 'org.apache.logging.log4j:log4j-api:2.19.0'
implementation 'org.apache.logging.log4j:log4j-core:2.19.0'
}
}

project.rootProject.dependencies {
Expand Down

0 comments on commit 1ed5829

Please sign in to comment.