This commit is contained in:
Sujal 2026-02-10 10:36:13 +00:00 committed by GitHub
commit 058ae3a433
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

23
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,23 @@
pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Build') {
steps {
sh 'mvn clean compile'
}
}
stage('Test') {
steps {
sh 'mvn test'
}
}
}
}