Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Shashankreddysunkara/7febcd693047f63e3bdff3ecafe29dee to your computer and use it in GitHub Desktop.
Save Shashankreddysunkara/7febcd693047f63e3bdff3ecafe29dee to your computer and use it in GitHub Desktop.
Jenkins Job DSL Example
job('jersey-rest-server') {
scm {
git {
remote {
url('git@github.com:marcelbirkner/jersey-rest-server.git')
}
createTag(false)
}
}
triggers {
scm('H/15 * * * *')
}
steps {
maven {
goals('-e clean install')
mavenOpts('-Xms256m')
mavenOpts('-Xmx512m')
properties skipTests: true
mavenInstallation('Maven 3.3.3')
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment