Mercurial > hg > Database > Christie
annotate build.gradle @ 12:b49a926cbdd9
add RemotePutTest and that is working
author | Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 09 Jan 2018 17:37:43 +0900 |
parents | 3ea61d0bfc34 |
children | 59fabebb67d8 |
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 |
1
3ea61d0bfc34
add dependency proccess but not work
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
5 sourceCompatibility = 1.9; |
3ea61d0bfc34
add dependency proccess but not work
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
6 targetCompatibility = 1.9; |
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') |
1
3ea61d0bfc34
add dependency proccess but not work
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
18 testCompile group: 'junit', name: 'junit', version: '4.21' |
12
b49a926cbdd9
add RemotePutTest and that is working
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
1
diff
changeset
|
19 compile group: 'org.msgpack', name: 'msgpack', version: '0.6.12' |
0 | 20 } |
21 | |
22 jar { | |
23 exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA' | |
24 manifest { | |
25 attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version | |
26 } | |
27 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } | |
28 archiveName = 'Christie.jar' | |
29 } |