diff options
author | Prudence Au <prudence.au@amdocs.com> | 2018-08-13 08:58:15 -0400 |
---|---|---|
committer | Prudence Au <prudence.au@amdocs.com> | 2018-08-13 08:58:23 -0400 |
commit | 9fd4f725456f2b1c7cdea58e4705d49780860a48 (patch) | |
tree | 2c7964b583f32fd135fd443afe49b815a5a2acfd | |
parent | 64df1992abb2d2df93dc8044c739befe7d0982d2 (diff) |
fix runtime issue
Change-Id: I345d9382e30d4cf3a3ee3024fdc3eeaeac52fd79
Issue-ID: LOG-519
Signed-off-by: Prudence Au <prudence.au@amdocs.com>
-rw-r--r-- | pom.xml | 39 |
1 files changed, 1 insertions, 38 deletions
@@ -127,32 +127,6 @@ <finalName>${project.artifactId}</finalName> <plugins> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-resources-plugin</artifactId> - <executions> - <execution> - <id>copy-docker-file</id> - <phase>package</phase> - <goals> - <goal>copy-resources</goal> - </goals> - <configuration> - <outputDirectory>target</outputDirectory> - <overwrite>true</overwrite> - <resources> - <resource> - <directory>${basedir}/src/main/docker</directory> - <filtering>true</filtering> - <includes> - <include>**/*</include> - </includes> - </resource> - </resources> - </configuration> - </execution> - </executions> - </plugin> - <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> @@ -223,17 +197,6 @@ </executions> </plugin> <plugin> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-maven-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>repackage</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <executions> @@ -261,7 +224,7 @@ <goals> <goal>copy-resources</goal> </goals> - <phase>validate</phase> + <phase>package</phase> <configuration> <outputDirectory>${project.basedir}/target/docker-stage/config</outputDirectory> <resources> |