Add deploy and install plugin versions
[demo.git] / vnfs / VESreporting_vLB / 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   <parent>
4     <groupId>org.openecomp.demo.vnf</groupId>
5     <artifactId>demo-aggregator</artifactId>
6     <version>1.0.0-SNAPSHOT</version>
7     <relativePath>../../pom.xml</relativePath>
8   </parent>
9
10   <modelVersion>4.0.0</modelVersion>
11   <groupId>org.openecomp.demo.vnf.ves</groupId>
12   <artifactId>ves_vlb_reporting</artifactId>
13
14   <build>
15     <plugins>
16
17        <plugin>
18         <artifactId>maven-jar-plugin</artifactId>
19         <version>2.3.2</version>
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   <version>2.8.1</version>
48   <configuration>
49     <skip>false</skip>
50   </configuration>
51 </plugin>
52
53     </plugins>
54   </build>
55
56 </project>