diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..b160b92 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,12 @@ +pipeline { + agent any; + + stages { + stage('Build') { + steps { + def proc = "gradlew build".execute() + println proc.text + } + } + } +}