33 lines
775 B
Kotlin
33 lines
775 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
jvmTarget = "1.6"
|
|
|
|
dependencies {
|
|
compile(project(":core:util.runtime"))
|
|
compile(commonDep("javax.inject"))
|
|
compileOnly(project(":kotlin-stdlib"))
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
testCompile(project(":kotlin-stdlib"))
|
|
testCompile(project(":kotlin-test:kotlin-test-jvm"))
|
|
testCompile(project(":kotlin-test:kotlin-test-junit"))
|
|
testCompile(commonDep("junit:junit"))
|
|
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
testRuntime(intellijDep()) { includeJars("trove4j") }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar {}
|
|
|
|
projectTest {
|
|
dependsOn(":dist")
|
|
workingDir = rootDir
|
|
}
|