start jenkins
Some checks failed
mypipeline/pipeline/head There was a failure building this commit

This commit is contained in:
isa 2023-04-21 16:45:12 -04:00
commit dcc030110c
2 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
/* Requires the Docker Pipeline plugin */
pipeline {
agent { docker { image 'maven:3.9.0-eclipse-temurin-11' } }
stages {
stage('build') {
steps {
sh 'mvn --version'
}
}
}
}

0
README.md Normal file
View File