Skip to content

Commit

Permalink
fixed craetion of jar not in build/libs
Browse files Browse the repository at this point in the history
  • Loading branch information
illyrius666 committed Jan 24, 2025
1 parent efadbf4 commit 9b47f3a
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/modules/VanillaPlus.main.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .idea/modules/VanillaPlus.test.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ tasks {
relocate("kotlin", "org.xodium.vanillaplus.kotlin")
destinationDirectory.set(file(".server/plugins"))
minimize()
doLast {
copy {
from(archiveFile)
into(layout.buildDirectory.dir("libs"))
}
}
}
jar { enabled = false }
withType<JavaCompile> { options.encoding = "UTF-8" }
Expand Down

0 comments on commit 9b47f3a

Please sign in to comment.