Create Jenkinsfile

Signed-off-by: vinayasuresh <Vinaya@pionedata.com>
This commit is contained in:
vinayasuresh 2025-05-21 10:57:13 +05:30 committed by GitHub
parent 4ac8f0e95d
commit 99fb96f115
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

16
Jenkinsfile vendored Normal file
View file

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