Mercurial > hg > Database > Christie
comparison build.gradle @ 0:c082039368f5
make project
author | Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 07 Dec 2017 21:45:59 +0900 |
parents | |
children | 3ea61d0bfc34 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c082039368f5 |
---|---|
1 apply plugin: 'java' | |
2 | |
3 sourceCompatibility = 1.9 | |
4 | |
5 [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' | |
6 group = 'cr.ie.u_ryukyu.ac.jp' | |
7 version = '1.0' | |
8 | |
9 repositories { | |
10 mavenCentral() | |
11 } | |
12 | |
13 dependencies { | |
14 testCompile group: 'junit', name: 'junit', version: '4.11' | |
15 } | |
16 | |
17 jar { | |
18 exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA' | |
19 manifest { | |
20 attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version | |
21 } | |
22 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } | |
23 archiveName = 'Christie.jar' | |
24 } |