diff --git a/Jenkinsfile b/Jenkinsfile index 996f576..03f1cbb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,13 +11,10 @@ podTemplate(containers: [ stage('Get a Gradle project') { container('gradle') { stage('Build a Gradle project') { - sh ''' - echo "gradle build" - ''' + sh './gradlew clean build' } } } } } -