Zond: проксирующий запускатор
This commit is contained in:
26
zond/build.gradle
Normal file
26
zond/build.gradle
Normal file
@@ -0,0 +1,26 @@
|
||||
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'
|
||||
}
|
||||
Reference in New Issue
Block a user