Skip to content

Commit

Permalink
Auto created Jenkinsfile from auto conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins committed Jul 16, 2019
1 parent a4fefd1 commit 60e132f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// Powered by Infostretch

timestamps {

node () {

stage ('flikart-dev - Checkout') {
checkout([$class: 'GitSCM', branches: [[name: '*/development']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'e93bf3fe-9b64-42dd-b45c-2da9cafeedf1', url: 'https://github.com/MithunTechnologiesDevOps/maven-web-application.git']]])
}
stage ('flikart-dev - Build') {
// Maven build step
withMaven(maven: 'maven3.6.1') {
if(isUnix()) {
sh "mvn clean sonar:sonar deploy "
} else {
bat "mvn clean sonar:sonar deploy "
}
}
}
}
}

0 comments on commit 60e132f

Please sign in to comment.