Update POM files
[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         <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
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       <plugin>
54         <groupId>org.codehaus.mojo</groupId>
55         <artifactId>exec-maven-plugin</artifactId>
56         <configuration>
57           <skip>true</skip>
58         </configuration>
59         <executions>
60           <execution>
61             <phase>none</phase>
62           </execution>
63         </executions>
64       </plugin>
65
66     </plugins>
67   </build>
68
69 </project>