22 lines
537 B
Kotlin
22 lines
537 B
Kotlin
|
|
apply { plugin("kotlin") }
|
|
|
|
dependencies {
|
|
compile(project(":core"))
|
|
compile(project(":compiler:util"))
|
|
compile(project(":compiler:frontend"))
|
|
compile(project(":compiler:frontend.java"))
|
|
compile(project(":compiler:cli"))
|
|
compile(project(":kotlin-build-common"))
|
|
testCompile(project(":kotlin-test:kotlin-test-junit"))
|
|
testCompile(project(":kotlin-stdlib"))
|
|
testCompile(projectTests(":kotlin-build-common"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar()
|