Browse Source

fixed jenkinsfile syntax error

Kenneth Lausdahl 7 years ago
parent
commit
0ecd88ce6b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Jenkinsfile

+ 1 - 1
Jenkinsfile

@@ -20,7 +20,7 @@ node {
         sh "mvn package -f DSL_SemanticAdaptation/pom.xml"
         step([$class: 'ArtifactArchiver', artifacts: '**/target/*.jar', fingerprint: true])
         step([$class: 'JUnitResultArchiver', testResults: '**/target/surefire-reports/TEST-*.xml'])
-        step([$class: 'JacocoPublisher')
+        step([$class: 'JacocoPublisher'])
 
         step([$class: 'TasksPublisher', canComputeNew: false, defaultEncoding: '', excludePattern: '', healthy: '', high: 'FIXME', ignoreCase: true, low: '', normal: 'TODO', pattern: '', unHealthy: ''])
       }}