Skip to content

Instantly share code, notes, and snippets.

@rmpestano
Last active April 23, 2019 21:46
Show Gist options
  • Save rmpestano/499a5c09e63cd07eab58c5b357c66cf3 to your computer and use it in GitHub Desktop.
Save rmpestano/499a5c09e63cd07eab58c5b357c66cf3 to your computer and use it in GitHub Desktop.
Java maven jenkinsfile
pipeline {
    agent any
    tools {
        maven 'apache-maven-3.3.9'
        jdk 'jdk1.8'
    }
    stages {
        stage('Build') {
            steps {
                sh 'mvn clean package'
            }
        }
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment