Fix local build problem - task compileJava not found

The problem is happening because our plugin deletes the task from
common projects, which may lead to such errors. The proper fix is
planned in our gradle plugin.
This commit is contained in:
Ilya Chernikov
2018-03-01 18:37:54 +01:00
parent 755f05e669
commit 6838873a93
@@ -20,6 +20,8 @@ task sourcesJar(type: Jar, dependsOn: classes) {
from sourceSets.main.kotlin
}
classes.dependsOn.remove("compileJava")
artifacts {
archives sourcesJar
archives javadocJar