diff options
author | 2018-08-10 19:42:49 -0400 | |
---|---|---|
committer | 2018-08-10 19:43:00 -0400 | |
commit | 42db1a62ffd76fe88e6134558ca3878b04414619 (patch) | |
tree | d163412c8ae7a91416f344b8642e8162091f8cde /pom.xml | |
parent | 29d8798a0f0e3a14dc46ec22aa40d115483692e6 (diff) |
copying files to docker image
Change-Id: I81995dfd898b19a9a07585353b5f33b5478ab1d8
Issue-ID: LOG-519
Signed-off-by: Prudence Au <prudence.au@amdocs.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -233,7 +233,7 @@ <goals> <goal>copy-resources</goal> </goals><!-- here the phase you need --> - <phase>validate</phase> + <phase>package</phase> <configuration> <outputDirectory>${project.basedir}/target/docker-stage</outputDirectory> <resources> @@ -254,7 +254,7 @@ </goals> <phase>validate</phase> <configuration> - <outputDirectory>${project.basedir}/target/docker-stage/opt/app/config</outputDirectory> + <outputDirectory>${project.basedir}/target/docker-stage/config</outputDirectory> <resources> <resource> <directory>config</directory> @@ -273,9 +273,9 @@ <goals> <goal>copy-resources</goal> </goals> - <phase>validate</phase> + <phase>package</phase> <configuration> - <outputDirectory>${project.basedir}/target/docker-stage/opt/app/bin</outputDirectory> + <outputDirectory>${project.basedir}/target/docker-stage/</outputDirectory> <resources> <resource> <directory>src/main/docker</directory> @@ -292,12 +292,12 @@ <goals> <goal>copy-resources</goal> </goals> - <phase>validate</phase> + <phase>package</phase> <configuration> - <outputDirectory>${project.basedir}/target/docker-stage/opt/app/lib</outputDirectory> + <outputDirectory>${project.basedir}/target/docker-stage/</outputDirectory> <resources> <resource> - <directory>target/</directory> + <directory>target</directory> <includes> <include>*.jar</include> </includes> |