-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
39 lines (32 loc) · 1.12 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
apply plugin: 'java'
archivesBaseName = theGroup + '_' + theName + '_' + theVersion
group = theGroup
sourceCompatibility = theSourceCompatibility
targetCompatibility = theTargetCompatibility
jar {
manifest {
attributes 'Implementation-Title': 'Kata 01: Supermarket pricing',
'Implementation-Version': theVersion
}
}
repositories {
mavenCentral()
maven {
url "http://types.cs.washington.edu/m2-repo"
}
}
dependencies {
// Java 8 checker framework
compile group: 'edu.washington.cs.types.checker', name: 'checker-framework', version: '1.7.0'
compile group: 'com.google.guava', name: 'guava', version: '18.0'
// test framework
testCompile group: 'junit', name: 'junit', version: '4.12'
// test sugar
testCompile("junit-addons:junit-addons:1.4") {
exclude module: "junit:junit:3.8.1"
}
testCompile group: 'com.tngtech.java', name: 'junit-dataprovider', version: '1.9.4'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
// jbehave test
testCompile group: 'org.jbehave', name: 'jbehave-core', version: '4.0.1'
}