Index: build.gradle =================================================================== diff -u -r16692 -r16831 --- build.gradle (.../build.gradle) (revision 16692) +++ build.gradle (.../build.gradle) (revision 16831) @@ -90,37 +90,6 @@ } } - test { - // set heap size for the test JVM(s) - minHeapSize = "128m" - maxHeapSize = "512m" - - // show standard out and standard error of the test JVM(s) on the console - testLogging.showStandardStreams = true - - // set JVM arguments for the test JVM(s) - jvmArgs '-XX:MaxPermSize=256m' - - // listen to events in the test execution lifecycle - beforeTest { descriptor -> - logger.lifecycle("Running test: " + descriptor) - } - - // listen to standard out and standard error of the test JVM(s) - onOutput { descriptor, event -> - logger.lifecycle("Test: " + descriptor + " produced standard out/err: " + event.message ) - } - - ignoreFailures = true //use this to allow build to continue for CI purposes - useTestNG(){ - suites "src/test/resources/test/forgon/AllTests.xml" //pick up centralized xml suite for each sub project - } - //useTestNG() { - // runlist to executed. path is relative to current folder - //suites 'src/test/java/test/forgon/AllTests.xml' - //} - } - configurations { all*.transitive = false