24 lines
563 B
Kotlin
24 lines
563 B
Kotlin
|
|
apply { plugin("kotlin") }
|
|
apply { plugin("jps-compatible") }
|
|
|
|
dependencies {
|
|
compile(projectDist(":kotlin-stdlib"))
|
|
compile(project(":compiler:backend"))
|
|
compile(files(toolsJar()))
|
|
compileOnly(intellijDep()) { includeJars("asm-all") }
|
|
testCompile(projectDist(":kotlin-test:kotlin-test-junit"))
|
|
testCompile(commonDep("junit:junit"))
|
|
testCompile(intellijDep()) { includeJars("asm-all") }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
projectTest {
|
|
dependsOn(":dist")
|
|
workingDir = rootDir
|
|
}
|