Create Jenkinsfile

This commit is contained in:
quarantoo 2024-05-24 12:45:33 +05:30 committed by GitHub
parent aa9b9e7f43
commit 55d844c5ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

16
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,16 @@
#!groovy
pipeline {
agent none
stages {
stage('Maven Install') {
agent {
docker {
image 'maven:3.5.0'
}
}
steps {
sh 'mvn clean install'
}
}
}
}