-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (31 loc) · 754 Bytes
/
build.gradle
File metadata and controls
37 lines (31 loc) · 754 Bytes
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
buildscript {
ext {
versions = [
hamkrest: "1.4.0.0",
junit: "1.0.0-M4",
jupiter: "5.0.0-M4",
kotlin: "1.1.2",
spek: "1.1.1"
]
}
repositories {
jcenter()
}
dependencies {
classpath "org.junit.platform:junit-platform-gradle-plugin:${versions.junit}"
classpath "com.netflix.nebula:nebula-kotlin-plugin:${versions.kotlin}"
}
}
subprojects {
apply plugin: "java"
apply plugin: "org.junit.platform.gradle.plugin"
repositories {
jcenter()
}
dependencies {
testCompile "org.junit.jupiter:junit-jupiter-api:${versions.jupiter}"
testRuntime "org.junit.jupiter:junit-jupiter-engine:${versions.jupiter}"
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
}