Add deploy and install plugin versions
[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         <version>2.3.2</version>
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   <version>2.8.1</version>
49   <configuration>
50     <skip>false</skip>
51   </configuration>
52 </plugin>
53
54     </plugins>
55   </build>
56
57 </project>