blob: 453f5c92ef776663b187386bd8b192148353e13e [file] [log] [blame] [edit]
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
}