summaryrefslogtreecommitdiffstats
path: root/portal-FE-os/pom.xml
diff options
context:
space:
mode:
authorSri Balaji Marripud <sri.balaji.marripud@att.com>2020-12-15 08:48:28 -0500
committerSri Balaji Marripud <sri.balaji.marripud@att.com>2020-12-22 15:13:27 -0500
commit0f6846175bb91b3e5c1fad2e62564534beb1a0e1 (patch)
tree17554081ffc4c8ad7208c5d8f2965cf2a8e46d44 /portal-FE-os/pom.xml
parenta49678cb3d2c7ef2b3e5fecc7f52b85df46e8268 (diff)
Code Change for cassandra PW Encryption
Issue-ID: PORTAL-1045 Change-Id: If02599088f3d2509dddc53d60dd9ca76e945542d Signed-off-by: Sri Balaji Marripud <sri.balaji.marripud@att.com>
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>