1234567891011121314151617181920212223242526272829 |
- defaultTasks 'distZip'
- apply plugin: 'java-library'
- apply plugin: 'application'
- sourceCompatibility = 1.11
- version = 'SNAPSHOT'
- mainClassName = 'de.nplusc.izc.senabitwiggler.EntryPoint'
- jar{
- manifest{
- attributes 'Implementation-Title': 'senabitwiggler',
- 'Implementation-Version': 'SNAPSHOT',
- 'Main-Class': 'de.nplusc.izc.senabitwiggler.EntryPoint'
-
- }
- }
- repositories{
- mavenCentral()
- }
- dependencies{
- api "org.yaml:snakeyaml:1.14"
- api("com.google.guava:guava:31.0.1-jre")
- api( 'info.picocli:picocli:4.6.2')
- }
|