blob: daefe4e55c4ec4c2136d78ffe3508c2d5f8b856d [file] [log] [blame] [edit]
apply { plugin("kotlin") }
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 {
shouldRunAfter(":dist")
workingDir = rootDir
}