diff options
author | Dan Timoney <dtimoney@att.com> | 2020-07-17 14:10:50 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-07-17 14:10:50 -0400 |
commit | f308dfd9d85590129215765ca37e635dd86607e2 (patch) | |
tree | b8670493a1d51894362dd1532f5cd0bd2884ed0f /ms | |
parent | 90e8f5792437f80b7e759206019ff4a0e494854a (diff) |
Fixed timing error in maven build
Updated pom.xml so that copy of generic-resource-api jar to the docker
staging directory occurs after the spring-boot-maven-plugin has
inserted the appropriate entries in the MANIFEST
Change-Id: Ifba881ffe19f426e2c409b6a1d9be0c96a40f344
Issue-ID: SDNC-1291
Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'ms')
-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 f59b4fe..da78e74 100644 --- a/ms/generic-resource-api/pom.xml +++ b/ms/generic-resource-api/pom.xml @@ -310,7 +310,7 @@ <goals> <goal>copy-dependencies</goal> </goals> - <phase>prepare-package</phase> + <phase>verify</phase> <configuration> <excludeTransitive>true</excludeTransitive> <outputDirectory>${project.build.directory}/docker-stage/opt/onap/sdnc/lib</outputDirectory> @@ -392,7 +392,7 @@ <goals> <goal>copy-resources</goal> </goals><!-- here the phase you need --> - <phase>package</phase> + <phase>verify</phase> <configuration> <outputDirectory>${basedir}/target/docker-stage/opt/onap/sdnc/lib</outputDirectory> <resources> |