diff --git a/script.groovy b/script.groovy new file mode 100644 index 0000000..8394048 --- /dev/null +++ b/script.groovy @@ -0,0 +1,14 @@ +def buildApp() { + echo 'building the application...' +} + +def testApp() { + echo 'testing the application...' +} + +def deployApp() { + echo 'deplying the application...' + echo "deploying version ${params.VERSION}" +} + +return this \ No newline at end of file