< prev index next >

build.gradle

Print this page
@@ -3570,10 +3570,11 @@
          testapp3
          testapp4
          testapp5
          testapp6
          testscriptapp1
+         testscriptapp2
      }
  
      def nonModSrcSets = [
          sourceSets.test,
          sourceSets.testapp1

@@ -3583,11 +3584,12 @@
          sourceSets.testapp2,
          sourceSets.testapp3,
          sourceSets.testapp4,
          sourceSets.testapp5,
          sourceSets.testapp6,
-         sourceSets.testscriptapp1
+         sourceSets.testscriptapp1,
+         sourceSets.testscriptapp2
      ]
  
      project.ext.buildModule = false
      project.ext.moduleRuntime = false
      project.ext.moduleName = "systemTests"

@@ -3683,11 +3685,11 @@
          dependsOn(createTestapp1Jar1)
          dependsOn(createTestapp1Jar2)
      }
      test.dependsOn(createTestApps);
  
-     def modtestapps = [ "testapp2", "testapp3", "testapp4", "testapp5", "testapp6", "testscriptapp1" ]
+     def modtestapps = [ "testapp2", "testapp3", "testapp4", "testapp5", "testapp6", "testscriptapp1", "testscriptapp2" ]
      modtestapps.each { testapp ->
          def testappCapital = testapp.capitalize()
          def copyTestAppTask = task("copy${testappCapital}", type: Copy) {
              from project.sourceSets."${testapp}".java.outputDir
              from project.sourceSets."${testapp}".output.resourcesDir
< prev index next >