comparison build.gradle @ 178:7f4d8d228a9b

add log4j2
author akahori
date Fri, 01 Feb 2019 19:26:51 +0900
parents 93f2e5736e62
children fbe20887ca9f
comparison
equal deleted inserted replaced
177:452838ca599a 178:7f4d8d228a9b
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 } 30 }
31
31 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } 32 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
32 archiveName = 'Christie.jar' 33 archiveName = 'Christie.jar'
33 } 34 }
34 35
35 task christieStartTopologyManager(type: Jar) { 36 task christieStartTopologyManager(type: Jar) {