-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
28 lines (20 loc) · 969 Bytes
/
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
group 'kic'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'maven'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'
compile group: 'net.finmath', name: 'finmath-lib', version: '3.1.1'
compile group: 'com.aparapi', name: 'aparapi', version: '1.4.1'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.databene', name: 'contiperf', version: '2.3.4'
testCompile "org.spockframework:spock-core:1.1-groovy-2.4"
// optional dependencies for using Spock
testCompile "org.hamcrest:hamcrest-core:1.3" // only necessary if Hamcrest matchers are used
testRuntime "net.bytebuddy:byte-buddy:1.6.5" // allows mocking of classes (in addition to interfaces)
testRuntime "org.objenesis:objenesis:2.5.1" // allows mocking of classes without default constructor (together with CGLIB)
}