Extract javac-wrapper into a separate module

It was actually a separate module before the grand build refactoring in
61dfb75e0e.
This commit is contained in:
Alexander Udalov
2020-03-14 22:34:33 +01:00
committed by Alexander Udalov
parent aad7354a3b
commit 4156a9c80b
5 changed files with 31 additions and 6 deletions
+20
View File
@@ -0,0 +1,20 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compile(project(":compiler:util"))
compile(project(":compiler:frontend.java"))
compileOnly(toolsJarApi())
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeIntellijCoreJarDependencies(project) }
}
sourceSets {
"main" {
projectDefault()
}
"test" { }
}