Rename ide-artifacts project to ide-plugin-dependencies

This commit is contained in:
Yan Zhulanow
2020-05-07 20:10:26 +09:00
parent 066b6d830f
commit 9d1c405b3c
15 changed files with 26 additions and 26 deletions
@@ -0,0 +1,20 @@
plugins {
java
}
idePluginDependency {
publish()
val jar: Jar by tasks
jar.apply {
val distKotlincTask = project(":kotlin-compiler").tasks.getByName("distKotlinc")
dependsOn(distKotlincTask)
from(distKotlincTask)
}
sourcesJar()
javadocJar()
}