Add deploy and install plugin versions
[demo.git] / vnfs / VES / 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.ves</groupId>
13   <artifactId>ves</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
46 <plugin>
47   <groupId>org.apache.maven.plugins</groupId>
48   <artifactId>maven-deploy-plugin</artifactId>
49   <version>2.8.1</version>
50   <configuration>
51     <skip>false</skip>
52   </configuration>
53 </plugin>
54
55     </plugins>
56   </build>
57
58 </project>