Files
java-maven-app/script.groovy
Nana Janashia 99d992ee76 Add new file
2020-11-05 17:47:49 +00:00

14 lines
237 B
Groovy

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