Fix dependency resolution during gradle project configuration

This commit is contained in:
Ilya Chernikov
2019-08-13 16:37:24 +02:00
parent 50e758cbb7
commit 5208318f34
2 changed files with 11 additions and 5 deletions
+7 -1
View File
@@ -39,4 +39,10 @@ sourceSets {
ant.importBuild("buildLexer.xml")
ant.properties["builddir"] = buildDir.absolutePath
ant.properties["flex.classpath"] = jflexPath.asPath
tasks.findByName("lexer")!!.apply {
doFirst {
ant.properties["flex.classpath"] = jflexPath.asPath
}
}