1234567891011121314151617181920212223242526272829303132 |
-
-
-
-
-
-
-
-
-
-
-
- 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 {
-
- testLogging{
- events "PASSED", "FAILED", "SKIPPED"
- }
- }
|