POM reorganization
[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-SNAPSHOT</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
15   <build>
16     <plugins>
17
18        <plugin>
19         <artifactId>maven-jar-plugin</artifactId>
20         <executions>
21           <execution>
22             <id>default-jar</id>
23             <phase>never</phase>
24           </execution>
25         </executions>
26       </plugin>
27
28       <plugin>
29         <artifactId>maven-assembly-plugin</artifactId>
30         <version>2.5.3</version>
31         <configuration>
32           <descriptor>dep.xml</descriptor>
33         </configuration>
34         <executions>
35           <execution>
36             <id>create-archive</id>
37             <phase>package</phase>
38             <goals>
39               <goal>single</goal>
40             </goals>
41           </execution>
42         </executions>
43       </plugin>
44 <plugin>
45   <groupId>org.apache.maven.plugins</groupId>
46   <artifactId>maven-deploy-plugin</artifactId>
47   <configuration>
48     <skip>false</skip>
49   </configuration>
50 </plugin>
51
52     </plugins>
53   </build>
54
55 </project>