Add master POM 03/703/1
authorplatania <platania@research.att.com>
Fri, 17 Feb 2017 21:27:57 +0000 (16:27 -0500)
committerplatania <platania@research.att.com>
Fri, 17 Feb 2017 21:27:57 +0000 (16:27 -0500)
Change-Id: I1d97f84ab5a375cfec7a41257cdf39bf114bcc9f
Signed-off-by: platania <platania@research.att.com>
pom.xml [new file with mode: 0755]

diff --git a/pom.xml b/pom.xml
new file mode 100755 (executable)
index 0000000..f1a5351
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+
+  <groupId>org.openecomp.demo.vnf</groupId>
+  <artifactId>demo-aggregator</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <name>demo-aggregator</name>
+  <packaging>pom</packaging>
+  <modelVersion>4.0.0</modelVersion>
+  <prerequisites>
+    <maven>3.1.1</maven>
+  </prerequisites>
+
+  <modules>
+    <!--module>vnfs/honeycomb_plugin/sample_plugin</module-->
+    <module>vnfs/vFW/pg_streams</module>
+    <module>vnfs/vLB/dns_streams</module>
+    <module>vnfs/vLB/DNSClient</module>
+    <module>vnfs/vLB/DNSManager</module>
+    <module>vnfs/VES</module>
+    <module>vnfs/VESreporting_vLB</module>
+    <module>vnfs/VESreporting_vFW</module>
+  </modules>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-install-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>exec-maven-plugin</artifactId>
+        <version>1.1.1</version>
+        <executions>
+          <execution>
+            <id>upload-boot-scripts</id>
+            <phase>deploy</phase>
+            <goals>
+              <goal>exec</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <executable>scripts/deploy.sh</executable>
+        </configuration>
+      </plugin>
+
+    </plugins>
+  </build>
+
+  <distributionManagement>
+    <repository>
+      <id>ecomp-releases</id>
+      <name>Demo Release Repository</name>
+      <url>${nexusproxy}/content/repositories/releases/</url>
+    </repository>
+    <snapshotRepository>
+      <id>ecomp-snapshots</id>
+      <name>Demo Snapshot Repository</name>
+      <url>${nexusproxy}/content/repositories/snapshots/</url>
+    </snapshotRepository>
+  </distributionManagement>
+
+</project>