summaryrefslogtreecommitdiffstats
path: root/portal-FE-os/pom.xml
diff options
context:
space:
mode:
authorjegadeeshbabu3 <jegadeesh.babu@att.com>2020-08-11 01:49:30 +0530
committerJegadeesh Babu <jegadeesh.babu@att.com>2020-08-10 20:35:54 +0000
commit560c13ca93cafcc163c5c139bc1324212c2dd54f (patch)
tree58253a0fe0d309ee92962429de9fe6629108f291 /portal-FE-os/pom.xml
parent6c663f87de1fc993f6dde5a8051ead094b5537bd (diff)
Raptor reporting capability integrated
Raptor capability integrated Issue-ID: PORTAL-980 Change-Id: Ibf83612374515109172cac8e397dd15d004ca8a6 Signed-off-by: jegadeeshbabu3 <jegadeesh.babu@att.com>
Diffstat (limited to 'portal-FE-os/pom.xml')
-rw-r--r--portal-FE-os/pom.xml57
1 files changed, 57 insertions, 0 deletions
diff --git a/portal-FE-os/pom.xml b/portal-FE-os/pom.xml
index 4c8a529b..a65181c6 100644
--- a/portal-FE-os/pom.xml
+++ b/portal-FE-os/pom.xml
@@ -20,6 +20,8 @@
<sonar.tests>src</sonar.tests>
<sonar.sourceEncoding>UTF-8</sonar.sourceEncoding>
<sonar.nodejs.executable>${project.basedir}\node\</sonar.nodejs.executable>
+ <epsdk.version>3.3.0-SNAPSHOT</epsdk.version>
+
</properties>
<build>
@@ -44,6 +46,61 @@
</filesets>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>unpack</id>
+ <phase>initialize</phase>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.onap.portal.sdk</groupId>
+ <artifactId>epsdk-app-overlay</artifactId>
+ <version>${epsdk.version}</version>
+ <type>war</type>
+ <overWrite>false</overWrite>
+ <includes>ngapp/src/app/pages/analytics/**</includes>
+ <outputDirectory>${basedir}/</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ <overWriteReleases>true</overWriteReleases>
+ <overWriteSnapshots>true</overWriteSnapshots>
+ </configuration>
+ </execution>
+ </executions>
+
+
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>3.0.2</version>
+ <executions>
+
+ <execution>
+ <id>copy-analytics</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/pages</directory>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+
+ </executions>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>