We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9eb3c24 commit 9976116Copy full SHA for 9976116
build.gradle
@@ -280,7 +280,10 @@ project.tasks.matching {
280
it.dependsOn(genAll)
281
}
282
// Ensure we always genAll on any run
283
-processResources.dependsOn(genAll)
+processResources.dependsOn(genAll, "CubicChunksCore:assemble")
284
+
285
+// Force core to be built before the main project
286
+compileJava.dependsOn("CubicChunksCore:assemble")
287
288
// unzipping subproject (CubicChunksCore) tests
289
tasks.register('unzipTests', Copy) {
0 commit comments