Skip to content

Instantly share code, notes, and snippets.

View legolas's full-sized avatar

Marcel Dullaart legolas

View GitHub Profile
@legolas
legolas / gist:92ab257615d3539d14fdb44ee93e148d
Created December 22, 2017 09:30
Pipeline that builds a maven project and tags the git repo
pipeline {
agent {
docker {
label 'docker'
// Image containing java 8, maven 3.5.2 and git
image 'legolas/maven:3.5.2-jdk-8-alpine'
args '-v /root/.m2:/root/.m2'
}
}
environment {