java-tutorials/Jenkinsfile

22 lines
396 B
Plaintext
Raw Normal View History

2022-06-17 10:47:43 -04:00
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
2022-06-17 12:44:29 -04:00
sh 'mvn clean install'
2022-06-17 10:47:43 -04:00
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}