summaryrefslogtreecommitdiffstats
path: root/pnda-ztt-app/pom.xml
diff options
context:
space:
mode:
authorchenxdu <chenxdu@cisco.com>2018-09-19 16:42:15 +0200
committerDonald Hunter <donaldh@cisco.com>2018-10-01 10:23:50 +0100
commitfd1060d4c176272f312fb23495ff8cdbebc121ae (patch)
tree2f24090ec71e47e69bd392918198745d0c8406e8 /pnda-ztt-app/pom.xml
parenta789d153737a991c14c7be03ae9044563573e4d2 (diff)
PNDA Telemetry app for virtual firwall use case
The telemetry app ingests virtual firewall VES events into HDFS and the timeseries datastore to support futher analytics. Change-Id: I3a0920d4b416c1c165311ab9ff0fc31d8c96499f Signed-off-by: chenxdu <chenxdu@cisco.com> Issue-ID: DCAEGEN2-632 Signed-off-by: Donald Hunter <donaldh@cisco.com>
Diffstat (limited to 'pnda-ztt-app/pom.xml')
-rw-r--r--pnda-ztt-app/pom.xml72
1 files changed, 72 insertions, 0 deletions
diff --git a/pnda-ztt-app/pom.xml b/pnda-ztt-app/pom.xml
new file mode 100644
index 0000000..c792a88
--- /dev/null
+++ b/pnda-ztt-app/pom.xml
@@ -0,0 +1,72 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.onap.dcaegen2.analytics.pnda</groupId>
+ <artifactId>pnda-ztt-app</artifactId>
+ <packaging>pom</packaging>
+ <description>pnda-ztt-app</description>
+ <version>1.0.0-SNAPSHOT</version>
+ <name>pnda-ztt-app</name>
+ <organization>
+ <name>default</name>
+ </organization>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.scala-sbt</groupId>
+ <artifactId>sbt-launch</artifactId>
+ <version>1.0.0-M4</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <version>1.6.0</version>
+ <executions>
+ <execution>
+ <phase>compile</phase>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <configuration>
+ <executable>java</executable>
+ <classpathScope>compile</classpathScope>
+ <arguments>
+ <argument>-classpath</argument>
+ <classpath/>
+ <argument>xsbt.boot.Boot</argument>
+ <argument>assembly</argument>
+ <argument>universal:packageZipTarball</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>3.0.0</version>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+ <file>${project.build.directory}/universal/${project.name}-0.0.3.tar.gz</file>
+ <type>tar.gz</type>
+ <classifier>app</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>