blob: 06e7f9b8c0ad56e1e3ae42ab182cea56f58d969c [file] [log] [blame] [edit]
description = "Kotlin IDE Lazy Resolver"
apply { plugin("java") }
runtimeJar {
archiveName = "kotlin-ide-common.jar"
dependsOn(":idea:ide-common:classes")
project(":idea:ide-common").let { p ->
p.pluginManager.withPlugin("java") {
from(p.the<JavaPluginConvention>().sourceSets.getByName("main").output)
}
}
from(fileTree("$rootDir/idea/ide-common")) { include("src/**") } // Eclipse formatter sources navigation depends on this
}
sourceSets {
"main" {}
"test" {}
}