Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
Fix: change workflow-service openapi generator phases
Browse files Browse the repository at this point in the history
SpringBoot must be started/stopped to create the `openapi.json` file.
Current selected phases generated the file and stopped SpringBoot
wrongly.

Signed-off-by: Gloria Ciavarrini <[email protected]>
  • Loading branch information
gciavarrini authored and openshift-merge-robot committed Mar 29, 2023
1 parent 03a78a4 commit 1736fc4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workflow-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@
<goals>
<goal>start</goal>
</goals>
<phase>prepare-package</phase>
<phase>process-classes</phase>
</execution>
<execution>
<configuration>
Expand All @@ -257,7 +257,7 @@
<goals>
<goal>stop</goal>
</goals>
<phase>pre-integration-test</phase>
<phase>process-test-sources</phase>
</execution>
<execution>
<goals>
Expand All @@ -282,7 +282,7 @@
<goals>
<goal>generate</goal>
</goals>
<phase>package</phase>
<phase>generate-test-sources</phase>
</execution>
</executions>
</plugin>
Expand Down

0 comments on commit 1736fc4

Please sign in to comment.