diff options
author | David Stilwell <stilwelld@att.com> | 2020-11-10 11:10:48 -0500 |
---|---|---|
committer | David Stilwell <stilwelld@att.com> | 2020-11-10 11:27:35 -0500 |
commit | 6c2f7281fdf2a4eca467e04c6ab3ccc4cb07d8e3 (patch) | |
tree | 084085c66e56cfec84560fadb898fb16fcc97fd5 | |
parent | 8478c087e47ab2b56d5fb5bd8fba8f91f2f7e108 (diff) |
fix race condition in building ms generic-resource-api
Changes made: 1. updated phase from verify to an earlier phase
Issue-ID: SDNC-1412
Change-Id: I4ebee2c7537388478baf9e8d03f3c0c16776cf1b
Signed-off-by: David Stilwell <stilwelld@att.com>
-rw-r--r-- | ms/generic-resource-api/pom.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ms/generic-resource-api/pom.xml b/ms/generic-resource-api/pom.xml index e4cecac..e71c350 100644 --- a/ms/generic-resource-api/pom.xml +++ b/ms/generic-resource-api/pom.xml @@ -312,7 +312,7 @@ <goals> <goal>copy-dependencies</goal> </goals> - <phase>verify</phase> + <phase>process-resources</phase> <configuration> <excludeTransitive>true</excludeTransitive> <outputDirectory>${project.build.directory}/docker-stage/opt/onap/sdnc/lib</outputDirectory> @@ -394,7 +394,7 @@ <goals> <goal>copy-resources</goal> </goals><!-- here the phase you need --> - <phase>verify</phase> + <phase>package</phase> <configuration> <outputDirectory>${basedir}/target/docker-stage/opt/onap/sdnc/lib</outputDirectory> <resources> |