Skip to content

Commit

Permalink
Remove mods folder in application image (#5431)
Browse files Browse the repository at this point in the history
Should fix the problem mentioned in #5406 (comment)
  • Loading branch information
tobiasdiez authored Oct 12, 2019
1 parent 5155517 commit 77431ea
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -633,6 +633,13 @@ if (OperatingSystem.current().isLinux()) {
}
}

// Delete unnecessary folder in application image
// TODO: Remove this workaround as soon as https://github.com/beryx/badass-jlink-plugin/issues/51 is fixed
task deleteModsFolder(type: Delete) {
delete "$buildDir/distribution/JabRef/app/mods"
}
deleteModsFolder.shouldRunAfter jpackageImage

jmh {
warmupIterations = 5
iterations = 10

0 comments on commit 77431ea

Please sign in to comment.