// Note: "common.gradle" in the root project contains additional initialization // for this project. This initialization is applied in the "build.gradle" // of the root project. // NetBeans will automatically add "run" and "debug" tasks relying on the // "mainClass" property. You may however define the property prior executing // tasks by passing a "-PmainClass=" argument. // // Note however, that you may define your own "run" and "debug" task if you // prefer. In this case NetBeans will not add these tasks but you may rely on // your own implementation. if (!hasProperty('mainClass')) { ext.mainClass = 'org.openzen.zenscript.scriptingexample.Main' } dependencies { compile project(':JavaIntegration') testCompile group: "org.junit.jupiter", name: "junit-jupiter", version: "5.4.2" testRuntime group: "org.junit.jupiter", name: "junit-jupiter", version: "5.4.2" } processResources { dependsOn(":StdLibs:zipItUp") from files(evaluationDependsOn(":StdLibs").tasks.getByName("zipItUp").outputs) } test { //useJUnitPlatform() testLogging{ events "PASSED", "FAILED", "SKIPPED" } }