Avoid multiple execution of deploy.sh
[demo.git] / vnfs / vLB / DNSManager / pom.xml
1 <project>
2
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.lb</groupId>
12   <artifactId>dns-manager</artifactId>
13   <name>DNS Manager</name>
14   <packaging>jar</packaging>
15
16   <build>
17     <plugins>
18       <plugin>
19         <groupId>org.apache.maven.plugins</groupId>
20         <artifactId>maven-jar-plugin</artifactId>
21         <version>2.3.2</version>
22         <configuration>
23           <archive>
24             <manifest>
25               <mainClass>main.java.DNSMembershipManager</mainClass>
26             </manifest>
27           </archive>
28         </configuration>
29     </plugin>
30
31       <plugin>
32         <groupId>org.codehaus.mojo</groupId>
33         <artifactId>exec-maven-plugin</artifactId>
34         <executions>
35           <execution>
36             <phase>none</phase>
37           </execution>
38         </executions>
39         <configuration>
40           <skip>true</skip>
41         </configuration>
42       </plugin>
43
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     <plugin>
54       <groupId>org.apache.maven.plugins</groupId>
55       <artifactId>maven-install-plugin</artifactId>
56       <version>2.5.2</version>
57       <configuration>
58         <skip>false</skip>
59       </configuration>
60      </plugin-->
61     </plugins>
62   </build>
63
64 </project>