diff --git a/jenkinsfile b/jenkinsfile new file mode 100644 index 0000000..4ad20db --- /dev/null +++ b/jenkinsfile @@ -0,0 +1,23 @@ +pipeline { + agent any + environment { + PATH = "/usr/share/man/man1:$PATH" + } +stages { + stage('checkout stage') { + steps { + echo "chcked" + git 'https://github.com/patilghub/java-example.git' + } + } + + stage('build stage') { + steps { + sh "mvn clean install" + } + } +} + + + +}