Mercurial > hg > Database > Christie
comparison build.gradle @ 200:60afc98ce6a4
マージ
author | ichikitakahiro <e165713@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 Feb 2019 16:40:17 +0900 |
parents | fbe20887ca9f |
children | 9697be80d1f6 |
comparison
equal
deleted
inserted
replaced
199:cdf604af6c12 | 200:60afc98ce6a4 |
---|---|
17 compile fileTree(dir: 'lib', include: '*.jar') | 17 compile fileTree(dir: 'lib', include: '*.jar') |
18 testCompile('org.junit.jupiter:junit-jupiter-api:5.2.0') | 18 testCompile('org.junit.jupiter:junit-jupiter-api:5.2.0') |
19 //compile group: 'org.msgpack', name: 'msgpack-core', version: '0.8.16' | 19 //compile group: 'org.msgpack', name: 'msgpack-core', version: '0.8.16' |
20 //compile group: 'org.msgpack', name: 'jackson-dataformat-msgpack', version: '0.8.16' | 20 //compile group: 'org.msgpack', name: 'jackson-dataformat-msgpack', version: '0.8.16' |
21 compile group: 'org.msgpack', name: 'msgpack', version: '0.6.12' | 21 compile group: 'org.msgpack', name: 'msgpack', version: '0.6.12' |
22 | 22 compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.1' |
23 | 23 compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.1' |
24 } | 24 } |
25 | 25 |
26 jar { | 26 jar { |
27 exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA' | 27 exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA' |
28 manifest { | 28 manifest { |
29 attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version | 29 attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version |
30 attributes 'Multi-Release': 'true' // https://stackoverflow.com/questions/53049346/is-log4j2-compatible-with-java-11 | |
30 } | 31 } |
32 | |
31 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } | 33 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } |
32 archiveName = 'Christie.jar' | 34 archiveName = 'Christie.jar' |
33 } | 35 } |
34 | 36 |
35 task christieStartTopologyManager(type: Jar) { | 37 task christieStartTopologyManager(type: Jar) { |