From 30b9f5b20a89dfa40b8d2ff7e5431b500069ae29 Mon Sep 17 00:00:00 2001 From: Stas Bezuhlyi <56916662+stasbezuhlyi@users.noreply.github.com> Date: Sat, 3 Apr 2021 22:22:59 +0300 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 541e86f74..9423cc75b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,7 +7,7 @@ pipeline { checkout scm } } - stage ('Initialize') { + stage ('Initialaze') { steps { sh ''' echo "PATH = ${PATH}" @@ -19,13 +19,13 @@ pipeline { steps { echo 'Running build automation' sh ''' - ./mvnw clean + ./mvnw package ''' } } - stage('Test') { + stage('CREATE ARTIFACT') { steps { - echo 'Testing..' + echo 'Creating artifact..' } } stage('Deploy') {