Mercurial > hg > Database > Alice
annotate build.gradle @ 569:aab9567be65c dispose
change TopologyNodeConfig
author | Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 26 Nov 2015 23:06:27 +0900 |
parents | e8280077c2f9 |
children | 86b39f5bf1d7 |
rev | line source |
---|---|
342 | 1 apply plugin: 'java' |
2 apply plugin: 'eclipse' | |
439 | 3 apply plugin: 'maven' |
342 | 4 |
357 | 5 sourceCompatibility = 1.8 |
6 targetCompatibility = 1.8 | |
346
d46c42352e4f
change images position. It is under src/main/resources
sugi
parents:
342
diff
changeset
|
7 [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' |
439 | 8 |
9 group = 'cr.ie.u_ryukyu.ac.jp' | |
553 | 10 version = '1.1' |
342 | 11 |
12 dependencies { | |
442 | 13 compile fileTree(dir: 'lib', include: '*.jar') |
342 | 14 } |
15 | |
16 jar { | |
564
e8280077c2f9
change gradle for Error:A JNI error has occurred, please check your installation and try again
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
563
diff
changeset
|
17 exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA' |
342 | 18 manifest { |
346
d46c42352e4f
change images position. It is under src/main/resources
sugi
parents:
342
diff
changeset
|
19 attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version |
342 | 20 } |
346
d46c42352e4f
change images position. It is under src/main/resources
sugi
parents:
342
diff
changeset
|
21 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } |
442 | 22 archiveName = 'Alice.jar' |
342 | 23 } |
353 | 24 |
439 | 25 ext { |
564
e8280077c2f9
change gradle for Error:A JNI error has occurred, please check your installation and try again
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
563
diff
changeset
|
26 mavenRepository = System.getenv()['HOME']+'/Documents/workspace/maven' |
439 | 27 } |
28 | |
29 uploadArchives { | |
30 repositories { | |
31 mavenDeployer { | |
32 repository(url: uri(mavenRepository)) | |
33 } | |
34 } | |
35 } |