aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorplatania <platania@research.att.com>2017-02-17 16:27:57 -0500
committerplatania <platania@research.att.com>2017-02-17 16:27:57 -0500
commit3e1177152e98f52d9097e936f493c1f294547866 (patch)
treea7c2b0ce83b9774ec45b04c81cc15172d915cb8f /pom.xml
parent71984d1bffa966c366d47464a3acf4b440c9c7c9 (diff)
Add master POM
Change-Id: I1d97f84ab5a375cfec7a41257cdf39bf114bcc9f Signed-off-by: platania <platania@research.att.com>
Diffstat (limited to 'pom.xml')
-rwxr-xr-xpom.xml78
1 files changed, 78 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100755
index 00000000..f1a53515
--- /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>