Spring Boot - Docker and Deployment
Given this Jenkins pipeline snippet:
What will happen when this pipeline runs?
pipeline {
agent any
stages {
stage('Test') {
steps {
sh 'mvn test'
}
}
}
}What will happen when this pipeline runs?
