build.gradle 571 B

1234567891011121314151617181920212223242526272829
  1. defaultTasks 'distZip'
  2. apply plugin: 'java-library'
  3. apply plugin: 'application'
  4. sourceCompatibility = 1.11
  5. version = 'SNAPSHOT'
  6. mainClassName = 'de.nplusc.izc.senabitwiggler.EntryPoint'
  7. jar{
  8. manifest{
  9. attributes 'Implementation-Title': 'senabitwiggler',
  10. 'Implementation-Version': 'SNAPSHOT',
  11. 'Main-Class': 'de.nplusc.izc.senabitwiggler.EntryPoint'
  12. }
  13. }
  14. repositories{
  15. mavenCentral()
  16. }
  17. dependencies{
  18. api "org.yaml:snakeyaml:1.14"
  19. api("com.google.guava:guava:31.0.1-jre")
  20. api( 'info.picocli:picocli:4.6.2')
  21. }