This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit cafdceac authored by Michael Breu's avatar Michael Breu :speech_balloon:
Browse files

Erste komplett lauffähige Version :-)

parent ce86ea3f
2 merge requests!17Initial Merge to Prepare Release 1.0.0,!1Resolve "Metadaten konsolideren"
......@@ -23,11 +23,11 @@ pipeline {
stage('Evaluate') {
steps {
milestone 2
junit(testResults: 'target/test-results/test/**', healthScaleFactor: 100)
jacoco(execPattern: 'target/jacoco/test.exec', inclusionPattern: '**/*.class', classPattern: 'target/classes', sourcePattern: 'src/main/java', sourceInclusionPattern: '**/*.java')
junit(testResults: 'target/test-results/test/**/*.xml', healthScaleFactor: 100)
jacoco(execPattern: 'target/jacoco/test.exec', sourcePattern: 'src/main/java', sourceInclusionPattern: '**/*.java')
withSonarQubeEnv('SonarQube Production') {
sh "mvn -Dsonar.projectName=GitSearch -Dsonar.projectKey=GITSEARCH jacoco:report sonar:sonar"
sh "mvn -Dsonar.projectName=GitSearch -Dsonar.projectKey=GITSEARCH -Dsonar.coverage.jacoco.xmlReportPaths=target/jacoco/test/jacoco.xml jacoco:report sonar:sonar"
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment