summaryrefslogtreecommitdiffstats
path: root/portal-FE-os/pom.xml
diff options
context:
space:
mode:
authorSunder Tattavarada <statta@att.com>2020-12-24 15:15:04 +0000
committerGerrit Code Review <gerrit@onap.org>2020-12-24 15:15:04 +0000
commit8558d8485e6ca28d4085721caf8867ee93e684ed (patch)
treef91cbe1548e932a907189628514cab133778217b /portal-FE-os/pom.xml
parentda7323ca54971da34b0f18da7463e408951f67f2 (diff)
parent0f6846175bb91b3e5c1fad2e62564534beb1a0e1 (diff)
Merge "Code Change for cassandra PW Encryption"
Diffstat (limited to 'portal-FE-os/pom.xml')
-rw-r--r--portal-FE-os/pom.xml53
1 files changed, 52 insertions, 1 deletions
diff --git a/portal-FE-os/pom.xml b/portal-FE-os/pom.xml
index 7f6a02ff..a306c15e 100644
--- a/portal-FE-os/pom.xml
+++ b/portal-FE-os/pom.xml
@@ -64,7 +64,7 @@
<version>${epsdk.version}</version>
<type>war</type>
<overWrite>false</overWrite>
- <includes>ngapp/src/app/pages/analytics/**</includes>
+ <includes>ngapp/src/app/pages/analytics/**, ngapp/src/app/report-run/**, ngapp/src/app/modals/error-modal/**, ngapp/src/app/shared/services/cache.service.ts</includes>
<outputDirectory>${basedir}/</outputDirectory>
</artifactItem>
</artifactItems>
@@ -99,6 +99,57 @@
</configuration>
</execution>
+ <execution>
+ <id>copy-report-run</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${basedir}/src/app/pages/</outputDirectory>
+
+ <resources>
+ <resource>
+ <directory>${basedir}/ngapp/src/app/report-run</directory>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+
+ <execution>
+ <id>copy-error-modal</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${basedir}/src/app/modals/</outputDirectory>
+
+ <resources>
+ <resource>
+ <directory>${basedir}/ngapp/src/app/modals</directory>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+
+ <execution>
+ <id>copy-cache-service</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${basedir}/src/app/shared/services/</outputDirectory>
+
+ <resources>
+ <resource>
+ <directory>${basedir}/ngapp/src/app/shared/services</directory>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+
</executions>
</plugin>