summaryrefslogtreecommitdiffstats
path: root/dcaedt_be
diff options
context:
space:
mode:
authorMichael Lando <ml636r@att.com>2018-05-21 13:04:01 +0000
committerGerrit Code Review <gerrit@onap.org>2018-05-21 13:04:01 +0000
commitb0ca04c744b18b0038ce6f2e7a5e2446c895333f (patch)
tree226be2d49e4917e866739d7ccca10af0949db67d /dcaedt_be
parent3bad5ac8d914040ea9d8e853f499da3935113a70 (diff)
parenta808ee1242564d7237e1dbec9336fd665d517dda (diff)
Merge "fix pom"
Diffstat (limited to 'dcaedt_be')
-rw-r--r--dcaedt_be/pom.xml25
1 files changed, 24 insertions, 1 deletions
diff --git a/dcaedt_be/pom.xml b/dcaedt_be/pom.xml
index 4659006..ca5f8dd 100644
--- a/dcaedt_be/pom.xml
+++ b/dcaedt_be/pom.xml
@@ -169,13 +169,36 @@
<id>docker</id>
<build>
<plugins>
+ <plugin>
+ <artifactId>maven-clean-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>delete dcae be war</id>
+ <phase>clean</phase>
+ <goals>
+ <goal>clean</goal>
+ </goals>
+ <configuration>
+ <filesets>
+ <fileset>
+ <directory>${project.parent.basedir}/docker/docker_be/target</directory>
+ <followSymlinks>false</followSymlinks>
+ <includes>
+ <include>*.war</include>
+ </includes>
+ </fileset>
+ </filesets>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<id>copy-dcae-be-war</id>
- <phase>prepare-package</phase>
+ <phase>install</phase>
<goals>
<goal>copy-resources</goal>
</goals>