Using standard authentication
[demo.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <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">
4
5
6   <groupId>org.openecomp.demo.vnf</groupId>
7   <artifactId>demo-aggregator</artifactId>
8   <version>1.0.0-SNAPSHOT</version>
9   <name>demo-aggregator</name>
10   <packaging>pom</packaging>
11   <modelVersion>4.0.0</modelVersion>
12   <prerequisites>
13     <maven>3.1.1</maven>
14   </prerequisites>
15
16   <modules>
17     <!--module>vnfs/honeycomb_plugin/sample_plugin</module-->
18     <module>vnfs/vFW/pg_streams</module>
19     <module>vnfs/vLB/dns_streams</module>
20     <module>vnfs/vLB/DNSClient</module>
21     <module>vnfs/vLB/DNSManager</module>
22     <module>vnfs/VES</module>
23     <module>vnfs/VESreporting_vLB</module>
24     <module>vnfs/VESreporting_vFW</module>
25   </modules>
26
27   <build>
28     <plugins>
29       <plugin>
30         <groupId>org.apache.maven.plugins</groupId>
31         <artifactId>maven-deploy-plugin</artifactId>
32         <configuration>
33           <skip>true</skip>
34         </configuration>
35       </plugin>
36       <plugin>
37         <groupId>org.apache.maven.plugins</groupId>
38         <artifactId>maven-install-plugin</artifactId>
39         <configuration>
40           <skip>true</skip>
41         </configuration>
42       </plugin>
43
44       <plugin>
45         <groupId>org.codehaus.mojo</groupId>
46         <artifactId>exec-maven-plugin</artifactId>
47         <version>1.1.1</version>
48         <executions>
49           <execution>
50             <id>upload-boot-scripts</id>
51             <phase>deploy</phase>
52             <goals>
53               <goal>exec</goal>
54             </goals>
55           </execution>
56         </executions>
57         <configuration>
58           <executable>scripts/deploy.sh</executable>
59         </configuration>
60       </plugin>
61
62     </plugins>
63   </build>
64
65   <distributionManagement>
66     <repository>
67       <id>ecomp-releases</id>
68       <name>Demo Release Repository</name>
69       <url> https://nexus.openecomp.org/content/repositories/releases/</url>
70     </repository>
71     <snapshotRepository>
72       <id>ecomp-snapshots</id>
73       <name>Demo Snapshot Repository</name>
74       <url> https://nexus.openecomp.org/content/repositories/snapshots/</url>
75     </snapshotRepository>
76   </distributionManagement>
77
78 </project>