pipeline { agent any tools { jdk 'jdk11' maven 'maven3' } stages { stage('Git Checkout') { steps { git 'https://github.com/jaiswaladi2468/BoardgameListingWebApp.git' } } stage('Compile') { steps { sh "mvn compile" } } stage('Test') { steps { sh "mvn test" } } stage('Package') { steps { sh "mvn package" } } stage('Install') { steps { sh "mvn install" } } } }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter