-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
36 lines (29 loc) · 920 Bytes
/
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
val kotlinVersion by extra("1.3.20")
val junitVersion by extra("5.1.0")
plugins {
java
kotlin("jvm") version "1.3.20"
}
allprojects {
group = "su.ch"
version = "1.0-SNAPSHOT"
repositories {
jcenter()
}
}
subprojects {
apply(plugin = "kotlin")
dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion")
implementation("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
implementation("com.google.code.findbugs:jsr305:3.0.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
testImplementation("org.junit.jupiter:junit-jupiter-api:$junitVersion")
testImplementation("org.mockito:mockito-core:2.2.11")
testImplementation("org.hamcrest:hamcrest-all:1.3")
testImplementation("com.google.guava:guava:21.0")
}
tasks.test {
useJUnitPlatform()
}
}