commit dcc030110c64692551f4fb1ecdcb3a7029c082ec Author: isa Date: Fri Apr 21 16:45:12 2023 -0400 start jenkins diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..2541928 --- /dev/null +++ b/Jenkinsfile @@ -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' + } + } + } +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29