Skip to content

Commit

Permalink
🐛 fix(stage1): don't bundle kotlin and log4j2
Browse files Browse the repository at this point in the history
Signed-off-by: xtrm <oss@xtrm.me>
  • Loading branch information
xtrm-en committed Dec 12, 2024
1 parent 82f6fbf commit aba4a19
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions stage1/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ sourceSets {

dependencies {
implementation(projects.common)
include("org.polyfrost:polyio:0.1.0")
include("me.xtrm:propy:0.0.5")
include("org.polyfrost:polyio:0.1.0") {
isTransitive = false
}
include("me.xtrm:propy:0.0.5") {
isTransitive = false
}

"legacyCompileOnly"("net.minecraft:launchwrapper:1.12")
}
Expand Down

0 comments on commit aba4a19

Please sign in to comment.