-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
22 lines (16 loc) · 812 Bytes
/
build.gradle
File metadata and controls
22 lines (16 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'com.google.inject', name: 'guice', version: '4.1.0'
testCompile group: 'org.jukito', name: 'jukito', version: '1.5'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.0.0'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.0.0'
testCompile group: 'org.opentest4j', name: 'opentest4j', version: '1.0.0'
testCompile group: 'name.falgout.jeffrey.testing.junit5', name: 'mockito-extension', version: '1.0.0'
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.8.0'
compile group: 'org.junit.platform', name: 'junit-platform-gradle-plugin', version: '1.0.0'
}