-
Notifications
You must be signed in to change notification settings - Fork 55
/
build.gradle
78 lines (74 loc) · 1.71 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
buildscript {
repositories { jcenter() }
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.1'
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'jacoco'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'findbugs'
repositories {
mavenCentral()
maven {
url 'https://raw.github.com/Ekito/maven-repo/master/releases'
}
}
sourceCompatibility = 1.8
version = 'latest-SNAPSHOT'
jar {
manifest {
attributes 'Implementation-Title': 'JWildFire',
'Implementation-Version': version
}
}
findbugs{
sourceSets = [sourceSets.main]
ignoreFailures = true
}
dependencies {
compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
compile 'com.l2fprod:l2fprod-common-all:7.3'
compile 'com.kitfox.svg:svg-salamander:1.0'
compile 'colt:colt:1.2.0'
compile 'org.jocl:jocl:0.1.9'
compile 'javazoom:jlayer:1.0.1'
compile 'edu.emory.mathcs:JTransforms:2.4'
compile 'org.scijava:jep:2.4.2'
compile 'com.jtattoo:JTattoo:1.6.11'
compile fileTree(dir: 'lib').matching { include '*.jar'}
testCompile group: 'junit', name: 'junit', version: '4.+'
testCompile 'commons-io:commons-io:2.4'
}
sourceSets {
main {
java {
srcDir 'src'
}
}
test {
java {
srcDir 'test/src'
}
}
}
jacoco {
toolVersion = "0.7.4.201502262128"
reportsDir = file("build/test-results")
}
jacocoTestReport {
reports {
xml.enabled false
csv.enabled false
html.destination "build/codecovHtml"
}
}
test {
maxParallelForks=4
forkEvery=1
maxHeapSize = "512m"
}
task wrapper(type: Wrapper) {
gradleVersion = '2.4'
}