Create Jenkinsfile

Signed-off-by: alpachino-animesh <ani29halder@gmail.com>
This commit is contained in:
alpachino-animesh 2025-06-20 20:53:05 +05:30 committed by GitHub
parent f9399b7a9f
commit 777a153774
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

14
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,14 @@
pipeline {
agent any{
stages {
stage('build')
{
steps
{
mvn package
echo "Package successful"
}
}
}
}
}