blob: 3aef8c4f9c29ccd836e2e404cdd9cd3ce8c1c931 [file] [log] [blame] [edit]
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(kotlinStdlib())
compileOnly(project(":kotlin-reflect-api"))
testImplementation(project(":kotlin-reflect"))
api(project(":compiler:util"))
api(project(":compiler:cli-common"))
api(project(":compiler:frontend.java"))
api(project(":js:js.frontend"))
api(project(":native:frontend.native"))
compileOnly(intellijCore())
compileOnly(jpsModel())
compileOnly(jpsModelImpl())
compileOnly(jpsModelSerialization())
testApi(jpsModelSerialization())
testApi(commonDependency("junit:junit"))
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }
}
runtimeJar()