Skip to content

Commit

Permalink
Fix plugin bundling
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Sep 8, 2024
1 parent 91db6c9 commit bb2fae7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,10 @@ private fun TaskContainer.createAssembleBotTask(
(configurations.getByName("plugin").allDependencies +
configurations.getByName("optionalPlugin").allDependencies)
.filterIsInstance<ModuleDependency>()
.filterNot { it.isTransitive }
.map {
dependencies.create(
mapOf(
"name" to it.name,
"name" to it.name.replace("mikbot-", ""),
"version" to it.version,
"ext" to "zip"
)
Expand Down

0 comments on commit bb2fae7

Please sign in to comment.