23 lines
365 B
Kotlin
23 lines
365 B
Kotlin
description = "kotlin-gradle-statistics"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(kotlinStdlib())
|
|
|
|
testCompile(project(":kotlin-test:kotlin-test-junit"))
|
|
testCompile("junit:junit:4.12")
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
projectTest {
|
|
workingDir = rootDir
|
|
}
|