Procházet zdrojové kódy

fixed jenkinsfile syntax error

Kenneth Lausdahl před 8 roky
rodič
revize
0ecd88ce6b
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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: ''])
       }}