From c111877e5d8ba6963c822e187a820ce4f1c9c753 Mon Sep 17 00:00:00 2001 From: Jordan A Date: Wed, 8 May 2019 16:04:31 -0700 Subject: [PATCH 01/15] commented out agent --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 691468166..7a63d36c1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,11 +5,13 @@ pipeline { stages { stage('Test') { + /* agent { node { label 'tester' } } + */ steps { sh 'mvn test' } From a20db52cca985e26fdbbbf1fb3da3068e45d5de3 Mon Sep 17 00:00:00 2001 From: Jordan A Date: Wed, 8 May 2019 16:07:23 -0700 Subject: [PATCH 02/15] removed all slaves --- Jenkinsfile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7a63d36c1..89663277a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,6 @@ #!/bin/env groovy pipeline { - agent none + agent any stages { @@ -17,24 +17,30 @@ pipeline { } } stage('Deploy to Artifactory') { + /* agent { node { label 'tester' } } + */ steps { - sh '' + // sh '' + echo 'NOT YET IMPLEMENTED' } } stage('Deploy to QA') { + /* agent { node { label 'tester' } } + */ steps { - sh '' + //sh '' + echo 'NOT YET IMPLEMENTED' } } } From 02fd19e324a05d9a328e59130dc86f14b3c1a570 Mon Sep 17 00:00:00 2001 From: Jordan A Date: Wed, 8 May 2019 17:08:47 -0700 Subject: [PATCH 03/15] Add artifactory distribution to pom --- pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pom.xml b/pom.xml index 31725653e..805331570 100644 --- a/pom.xml +++ b/pom.xml @@ -420,6 +420,12 @@ + + snapshots + localhost.localdomain-snapshots + http://192.168.0.49:8081/artifactory/libs-snapshot-local + + demopetclinic From bf68821935f46c9cf5e016b5ebb063899374aa1b Mon Sep 17 00:00:00 2001 From: Jordan A Date: Wed, 8 May 2019 20:43:19 -0700 Subject: [PATCH 04/15] change ip of artifactory server --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 805331570..7c948708d 100644 --- a/pom.xml +++ b/pom.xml @@ -423,7 +423,7 @@ snapshots localhost.localdomain-snapshots - http://192.168.0.49:8081/artifactory/libs-snapshot-local + http://10.0.0.97:8081/artifactory/libs-snapshot-local