Mercurial > hg > Database > Christie
annotate build.gradle @ 122:3a0f8a93c84a
fix local_test_run.sh
author | akahori |
---|---|
date | Tue, 11 Dec 2018 20:51:29 +0900 |
parents | 7ca232bc1009 |
children | d92f0bbad1eb |
rev | line source |
---|---|
0 | 1 apply plugin: 'java' |
1
3ea61d0bfc34
add dependency proccess but not work
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
2 apply plugin: 'eclipse' |
3ea61d0bfc34
add dependency proccess but not work
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
3 apply plugin: 'maven' |
0 | 4 |
107 | 5 sourceCompatibility = 11; |
6 targetCompatibility = 11; | |
0 | 7 |
8 [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' | |
9 group = 'cr.ie.u_ryukyu.ac.jp' | |
10 version = '1.0' | |
11 | |
12 repositories { | |
13 mavenCentral() | |
14 } | |
15 | |
16 dependencies { | |
12
b49a926cbdd9
add RemotePutTest and that is working
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
1
diff
changeset
|
17 compile fileTree(dir: 'lib', include: '*.jar') |
107 | 18 testCompile('org.junit.jupiter:junit-jupiter-api:5.2.0') |
120 | 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' | |
21 | |
0 | 22 } |
23 | |
24 jar { | |
25 exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA' | |
26 manifest { | |
27 attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version | |
28 } | |
29 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } | |
30 archiveName = 'Christie.jar' | |
120 | 31 } |
32 | |
33 task christieStartTopologyManager(type: Jar) { | |
34 exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA' | |
35 baseName = "ChristieStartTopologyManager" | |
36 manifest { | |
37 attributes 'Main-Class': 'christie.topology.manager.StartTopologyManager', | |
38 'Implementation-Title': 'StartTopologyManager', | |
39 'Implementation-Description': 'Quickstart', | |
40 'Implementation-Version': version, | |
41 'Assembly-Date': new java.util.Date().toString() | |
42 | |
43 } | |
44 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } | |
45 with jar | |
46 } | |
47 | |
48 | |
49 task christieStartTorqueTestTopology(type: Jar) { | |
50 exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA' | |
51 baseName = "ChristieStartTorqueTestTopology" | |
52 manifest { | |
53 attributes 'Main-Class': 'christie.test.topology.localTestTopology.StartTorqueTestTopology', | |
54 'Implementation-Title': 'christieStartTorqueTestTopology', | |
55 'Implementation-Description': 'Quickstart', | |
56 'Implementation-Version': version, | |
57 'Assembly-Date': new java.util.Date().toString() | |
58 | |
59 } | |
60 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } | |
61 with jar | |
0 | 62 } |