Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. plugins {
  2. ...
  3. id 'org.beryx.jlink' version '2.4.1'
  4. }
  5.  
  6. jar {
  7. manifest {
  8. attributes 'Main-Class': 'ks.jlink.App'
  9. }
  10. }
  11.  
  12. jlink {
  13. mergedModule {
  14. requires 'org.slf4j'
  15. requires 'java.management'
  16. }
  17. options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
  18. launcher{
  19. name = 'start'
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement