27 lines
663 B
Groovy
27 lines
663 B
Groovy
group = 'asys'
|
|
version = '0.1-SNAPSHOT'
|
|
|
|
apply plugin: 'application'
|
|
|
|
mainClassName = "asys.zond.Main"
|
|
|
|
configurations {
|
|
included
|
|
compile.extendsFrom included
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes 'Implementation-Title': 'ASys Zond',
|
|
'Implementation-Version': version,
|
|
'Main-Class': mainClassName
|
|
}
|
|
baseName = project.group + '.' + project.name
|
|
from { configurations.included.collect { it.isDirectory() ? it : zipTree(it) } }
|
|
}
|
|
|
|
dependencies {
|
|
included group: 'org.fusesource.jansi', name: 'jansi', version: '1.11'
|
|
included group: 'org.apache.commons', name: 'commons-exec', version: '1.3'
|
|
}
|