-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
47 lines (35 loc) · 1.36 KB
/
build.gradle.kts
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
val kotlinVersion = "1.1.3"
// JUnit 5
val junitPlatformVersion = "1.0.0-RC2"
val junitVintageVersion = "4.12.0-RC2"
val junitJupiterVersion = "5.0.0-RC2"
buildscript {
val kotlinVersion = "1.1.3"
val junitPlatformVersion = "1.0.0-RC2"
repositories {
mavenCentral()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("org.jetbrains.kotlin:kotlin-allopen:$kotlinVersion")
classpath("org.junit.platform:junit-platform-gradle-plugin:$junitPlatformVersion")
}
}
apply {
plugin("kotlin")
plugin("org.junit.platform.gradle.plugin")
}
repositories {
mavenCentral()
}
dependencies {
compile("org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion")
compile("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
testRuntime("org.junit.vintage:junit-vintage-engine:$junitVintageVersion")
testRuntime("org.junit.jupiter:junit-jupiter-engine:$junitJupiterVersion")
testRuntime("org.junit.platform:junit-platform-runner:$junitPlatformVersion")
testRuntime("org.junit.platform:junit-platform-launcher:$junitPlatformVersion")
testCompile("org.junit.vintage:junit-vintage-engine:$junitVintageVersion")
testCompile("org.junit.jupiter:junit-jupiter-api:$junitJupiterVersion")
testCompile("org.junit.jupiter:junit-jupiter-params:$junitJupiterVersion")
}