build.gradle 948 B

123456789101112131415161718192021222324252627282930313233
  1. defaultTasks 'distZip'
  2. apply plugin: 'java'
  3. apply plugin: 'application'
  4. sourceCompatibility = 1.8
  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. compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.+'
  19. compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.+'
  20. compile group: 'org.apache.logging.log4j', name: 'log4j-iostreams', version: '2.+'
  21. compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.+'
  22. compile group: 'org.apache.logging.log4j', name: 'log4j-jul', version: '2.+'
  23. compile "org.yaml:snakeyaml:1.14"
  24. compile("com.google.guava:guava:31.0.1-jre")
  25. }