Archived
0

Zond: соединение с ASys

This commit is contained in:
2017-06-08 13:18:29 +03:00
parent 2d53066132
commit 118e4fe896
6 changed files with 268 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
group = 'asys'
version = '0.1-SNAPSHOT'
version = '0.2-SNAPSHOT'
apply plugin: 'application'
@@ -10,7 +10,13 @@ configurations {
compile.extendsFrom included
}
compileJava {
dependsOn ':bridge-protocol:compileJava'
}
jar {
dependsOn ':bridge-protocol:jar'
dependsOn configurations.included
manifest {
attributes 'Implementation-Title': 'ASys Zond',
'Implementation-Version': version,
@@ -20,7 +26,14 @@ jar {
from { configurations.included.collect { it.isDirectory() ? it : zipTree(it) } }
}
ext {
nettyVersion = '4.0.23.Final'
}
dependencies {
included files(project(':bridge-protocol').sourceSets.main.output.classesDir)
included group: 'org.fusesource.jansi', name: 'jansi', version: '1.11'
included group: 'org.apache.commons', name: 'commons-exec', version: '1.3'
included group: 'io.netty', name: 'netty-codec', version: nettyVersion
included group: 'com.google.guava', name: 'guava', version: '21.0'
}