diff --git a/Jenkinsfile b/Jenkinsfile index cb6d2e741..3747b5663 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,10 +1,5 @@ pipeline { - agent { - docker { - image 'maven:3-alpine' - args '-v /root/.m2:/root/.m2' - } - } + agent any stages { stage('Checkout SCM') { @@ -22,8 +17,7 @@ pipeline { } stage('Build') { steps { - sh 'chmod +x ./gradlew' - sh './gradlew build -x test' + echo 'Build..' } } stage('Test') { @@ -37,4 +31,4 @@ pipeline { } } } -} \ No newline at end of file +}