Skip to content

Commit

Permalink
added jenkinsfile for CI/CD operations
Browse files Browse the repository at this point in the history
  • Loading branch information
UK committed Dec 9, 2024
1 parent 2604e06 commit 6483218
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
pipeline {
agent any

stages {
stage('Checkout Code') {
steps {
checkout scm
}
}

stage('Build') {
steps {
sh './mvnw clean install'
}
}

stage('Test') {
steps {
sh './mvnw test'
}
}

stage('Package') {
steps {
sh './mvnw package'
}
}
}

0 comments on commit 6483218

Please sign in to comment.