Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
fix: ShadowJar not excluding stuff and therefor the plugin not working
Browse files Browse the repository at this point in the history
  • Loading branch information
Racci committed Feb 21, 2022
1 parent 943b792 commit db5cc43
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ bukkit {
libs.koin.core.get().toString(),
libs.logging.sentry.get().toString(),
libs.mordant.get().toString(),
libs.caffeine.get().toString()
libs.caffeine.get().toString(),
libs.kotlinx.serialization.kaml.get().toString()
)
website = "https://github.com/DaRacci/Minix"
}
Expand Down Expand Up @@ -132,7 +133,9 @@ tasks {
relocate("net.kyori.adventure", "$location.adventure")
dependencies {
exclude {
it.moduleName.startsWith("examination")
it.moduleName.startsWith("examination") ||
it.moduleName.startsWith("kotlin") ||
it.moduleName.contains("annotations")
}
}
}
Expand Down

0 comments on commit db5cc43

Please sign in to comment.