Initial OpenECOMP Demo commit
[demo.git] / vnfs / vFW / pg_streams / pom.xml
1 <!--<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">-->
2 <project>
3
4 <parent>
5     <groupId>org.openecomp.demo.vnf</groupId>
6     <artifactId>demo-aggregator</artifactId>
7     <version>1.0.0</version>
8 <relativePath>../../pom.xml</relativePath>
9   </parent>
10
11   <modelVersion>4.0.0</modelVersion>
12   <groupId>org.openecomp.demo.vnf.vfw</groupId>
13   <artifactId>vfw_pg_streams</artifactId>
14  <!-- <name>vfw_pg_streams</name>-->
15   <version>1.0.0</version>
16   <build>
17     <plugins>
18
19        <plugin>
20         <artifactId>maven-jar-plugin</artifactId>
21         <executions>
22           <execution>
23             <id>default-jar</id>
24             <phase>never</phase>
25           </execution>
26         </executions>
27       </plugin>
28
29       <plugin>
30         <artifactId>maven-assembly-plugin</artifactId>
31         <version>2.5.3</version>
32         <configuration>
33           <descriptor>dep.xml</descriptor>
34         </configuration>
35         <executions>
36           <execution>
37             <id>create-archive</id>
38             <phase>package</phase>
39             <goals>
40               <goal>single</goal>
41             </goals>
42           </execution>
43         </executions>
44       </plugin>
45 <plugin>
46   <groupId>org.apache.maven.plugins</groupId>
47   <artifactId>maven-deploy-plugin</artifactId>
48   <configuration>
49     <skip>false</skip>
50   </configuration>
51 </plugin>
52
53     </plugins>
54   </build>
55
56 </project>