Add Jenkins pipeline

This commit is contained in:
Sujal 2026-02-10 15:51:17 +05:30
parent a4fcf04c93
commit 26d0a51f54

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'
}
}
}
}