You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def gradleTasks ="--refresh-dependencies clean spotlessCheck pmdMain pmdTest spotbugsMain spotbugsTest allTests"// the gradle tasks that are executed on ALL projects
49
-
def mainProjectGradleTasks ="jacocoTestReport jacocoTestCoverageVerification"// additional tasks that are only executed on project 0 (== main project)
48
+
def gradleTasks ="--refresh-dependencies clean spotlessCheck pmdMain pmdTest check"// the gradle tasks that are executed on ALL projects
49
+
def mainProjectGradleTasks ="reportScoverage checkScoverage"// additional tasks that are only executed on project 0 (== main project)
50
50
// if you need additional tasks for deployment add them here
51
51
// NOTE: artifactory task with credentials will be added below
52
52
def deployGradleTasks =""
@@ -99,7 +99,7 @@ if (env.BRANCH_NAME == "master") {
99
99
100
100
101
101
// test the project
102
-
stage("gradle allTests${projects.get(0)}") {
102
+
stage("gradle check${projects.get(0)}") {
103
103
// build and test the project
104
104
gradle("${gradleTasks}${mainProjectGradleTasks}")
105
105
}
@@ -210,7 +210,7 @@ if (env.BRANCH_NAME == "master") {
0 commit comments