comparison build.gradle @ 66:0c4a0a1c2f7f

gtadle
author Kanagawa TATSUKI <tatsuki@ie.u-ryukyu.ac.jp>
date Mon, 16 Jun 2014 16:47:12 +0900
parents
children 5b7e45464bb8
comparison
equal deleted inserted replaced
65:caad209bfbe3 66:0c4a0a1c2f7f
1 apply plugin: "java"
2 apply plugin: "eclipse"
3
4 sourceCompatibility = 1.6
5 targetCompatibility = 1.6
6 [compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
7 version = '1.0'
8
9 repositories {
10 mavenCentral()
11 }
12
13 dependencies {
14 compile "commons-collections:commons-collections:3.2.1"
15 compile "org.apache.maven.surefire:surefire-junit4:2.13"
16 compile "com.google.guava:guava:12.0"
17 compile "org.functionaljava:functionaljava:3.1"
18 testCompile "junit:junit:4.7"
19 }
20
21 jar {
22 manifest {
23 attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version
24 }
25 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
26 archiveName = 'jungle-core.jar'
27 }