diff options
author | andre.schmid <andre.schmid@est.tech> | 2020-03-31 11:39:52 +0100 |
---|---|---|
committer | Ofir Sonsino <ofir.sonsino@intl.att.com> | 2020-04-05 15:13:12 +0000 |
commit | e6a4b30df9c1e712feacdacb04b205c9efd773bc (patch) | |
tree | 1fc8266bc9ac1784b1adade76316161f2873ad6e | |
parent | 9cd184ef2b013197cd984cf881335c08a9eab01f (diff) |
Fix sdc-backend image context.xml creation
The file was not being overwritten during the build process.
It was not changing after the first build, causing war artifact
version problems while running the container.
Change-Id: I8b1ab741c82f9274a2049bb4c2d1c3a8c1c8ee38
Issue-ID: SDC-2862
Signed-off-by: andre.schmid <andre.schmid@est.tech>
-rw-r--r-- | catalog-be/pom.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog-be/pom.xml b/catalog-be/pom.xml index 3f09db86ce..66e9dc0173 100644 --- a/catalog-be/pom.xml +++ b/catalog-be/pom.xml @@ -990,7 +990,7 @@ <phase>validate</phase> <configuration> <target> - <copy file="sdc-backend/context.xml.template" tofile="sdc-backend/context.xml"/> + <copy file="sdc-backend/context.xml.template" tofile="sdc-backend/context.xml" overwrite="true"/> </target> </configuration> <goals> |