Files
kotlin-fork/prepare/formatter/build.gradle.kts
T
2018-06-22 21:42:30 +03:00

24 lines
467 B
Kotlin

description = "Kotlin Formatter"
plugins {
java
}
runtimeJar {
archiveName = "kotlin-formatter.jar"
dependsOn(":idea:formatter:classes")
project(":idea:formatter").let { p ->
p.pluginManager.withPlugin("java") {
from(p.mainSourceSet.output)
}
}
from(fileTree("$rootDir/idea/formatter")) { include("src/**") } // Eclipse formatter sources navigation depends on this
}
sourceSets {
"main" {}
"test" {}
}