Skip to content

Commit

Permalink
Remove packaging phase from Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
peterwvj committed Mar 29, 2017
1 parent fd9a73f commit e705751
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions Jenkinsfile
Expand Up @@ -22,18 +22,6 @@ node {
sh "mvn compile"
}}

stage ('Package core'){
withMaven(mavenLocalRepo: '.repository', mavenSettingsFilePath: "${env.MVN_SETTINGS_PATH}") {

// Run the maven build
sh "mvn package"
step([$class: 'ArtifactArchiver', artifacts: '**/target/*.jar', fingerprint: true])
step([$class: 'JUnitResultArchiver', testResults: '**/target/surefire-reports/TEST-*.xml'])
step([$class: 'JacocoPublisher', exclusionPattern: '**/org/overture/ast/analysis/**/*.*, **/org/overture/ast/expressions/**/*.*, **/org/overture/ast/modules/**/*.*, **/org/overture/ast/node/**/*.*,**/org/overture/ast/patterns/**/*.*, **/org/overture/ast/statements/**/*.*, **/org/overture/ast/types/**/*.*, **/org/overture/codegen/ir/**/*, **/org/overture/ide/**/*'])

step([$class: 'TasksPublisher', canComputeNew: false, defaultEncoding: '', excludePattern: '', healthy: '', high: 'FIXME', ignoreCase: true, low: '', normal: 'TODO', pattern: '', unHealthy: ''])
}}

stage ('Install IDE'){
withMaven(mavenLocalRepo: '.repository', mavenSettingsFilePath: "${env.MVN_SETTINGS_PATH}") {

Expand Down

0 comments on commit e705751

Please sign in to comment.