Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save prathibhapadma/77a2019df8404f6d0adafaf2ce426a36 to your computer and use it in GitHub Desktop.
Save prathibhapadma/77a2019df8404f6d0adafaf2ce426a36 to your computer and use it in GitHub Desktop.

Gist to support https://youtu.be/3XzVOxvNpGM

Documentation

Jenkinsfile

pipeline {
  agent any
  stages {
    stage('Build') {
      steps {
        git 'https://github.com/jglick/simple-maven-project-with-tests.git'
        sh "mvn -Dmaven.test.failure.ignore=true clean package"
      }
      post {
        success {
          echo "success"
        }
      }
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment