blob: bb3b1a3dc732929baafb36a0abbd2234d5b46115 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
subprojects {
apply {
plugin("maven-publish")
plugin("com.jfrog.bintray")
}
dependencies {
compileOnly(project(":core"))
implementation(kotlin("stdlib-jdk8"))
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
testImplementation(project(":testApi"))
testImplementation("org.junit.jupiter:junit-jupiter:5.6.0")
}
tasks.test {
useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
}
}
}
|