From d42984f9250e7e1974929b107df7d3fdc21b3395 Mon Sep 17 00:00:00 2001 From: Maxim Musienko <mmusiien@redhat.com> Date: Mon, 21 Oct 2019 13:38:34 +0300 Subject: [PATCH] Fix version of jar file in petclinic project of happy path tests (#14936) --- e2e/files/happy-path/happy-path-workspace.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/files/happy-path/happy-path-workspace.yaml b/e2e/files/happy-path/happy-path-workspace.yaml index 6ab3ebac10..d7475fc5fb 100644 --- a/e2e/files/happy-path/happy-path-workspace.yaml +++ b/e2e/files/happy-path/happy-path-workspace.yaml @@ -53,17 +53,17 @@ commands: actions: - type: exec component: maven-container - command: java -jar spring-petclinic-2.1.0.BUILD-SNAPSHOT.jar --spring.profiles.active=mysql + command: java -jar spring-petclinic-2.2.0.BUILD-SNAPSHOT.jar --spring.profiles.active=mysql workdir: /projects/petclinic/target - name: run-with-changes actions: - type: exec component: maven-container - command: java -jar spring-petclinic-2.1.0.BUILD-SNAPSHOT.jar --spring.profiles.active=mysql + command: java -jar spring-petclinic-2.2.0.BUILD-SNAPSHOT.jar --spring.profiles.active=mysql workdir: /projects/petclinic/target - name: run-debug actions: - type: exec component: maven-container - command: java -jar -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=1044 spring-petclinic-2.1.0.BUILD-SNAPSHOT.jar --spring.profiles.active=mysql + command: java -jar -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=1044 spring-petclinic-2.2.0.BUILD-SNAPSHOT.jar --spring.profiles.active=mysql workdir: /projects/petclinic/target -- GitLab