Create Jenkinsfile

This commit is contained in:
lwj9812 2024-03-08 14:16:02 +09:00 committed by GitHub
parent 30e16ab3fe
commit 5be80e347e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

17
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,17 @@
pipeline {
agent any
tools {
jdk "jdk17"
maven "M3"
}
stages {
stage('Git clone') {
steps {
echo 'Git clone'
git url: 'https://github.com/lwj9812/spring-petclinic.git',
branch: 'efficien-webjars'
}
}
}
}