Avoid multiple execution of deploy.sh
[demo.git] / vnfs / VESreporting_vFW / 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_vfw_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
45         <plugin>
46             <groupId>org.codehaus.mojo</groupId>
47             <artifactId>exec-maven-plugin</artifactId>
48             <executions>
49                 <execution>
50                     <phase>none</phase>
51                 </execution>
52             </executions>
53             <configuration>
54                 <skip>true</skip>
55             </configuration>
56         </plugin>
57
58 <!--plugin>
59   <groupId>org.apache.maven.plugins</groupId>
60   <artifactId>maven-deploy-plugin</artifactId>
61   <version>2.8.1</version>
62   <configuration>
63     <skip>false</skip>
64   </configuration>
65 </plugin-->
66
67     </plugins>
68   </build>
69
70 </project>