diff --git a/Jenkinsfile b/Jenkinsfile index 41dfe96ff..8b1378917 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,23 +1 @@ - -node('jfrognew'){ - stage('scm'){ - git 'https://github.com/ametgud4u/spring-petclinic.git' - } - - stage('build'){ - sh label: '', script: 'mvn clean package' - } - - stage('postbuild'){ - junit '**/target/surefire-reports/*.xml' - archiveArtifacts 'target/*.jar' - } - - stage('Sonar') { - withSonarQubeEnv('sonar') { - sh 'mvn org.sonarsource.scanner.maven:sonar-maven-plugin:3.6.0.1398:sonar' - } - } -} -