Update POM files
[demo.git] / vnfs / vLB / DNSClient / 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.vlb</groupId>
12   <artifactId>dns-client</artifactId>
13   <name>DNS Client</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.DNSServer</mainClass>
26             </manifest>
27           </archive>
28         </configuration>
29     </plugin>
30
31     <plugin>
32       <groupId>org.apache.maven.plugins</groupId>
33       <artifactId>maven-deploy-plugin</artifactId>
34         <configuration>
35           <skip>false</skip>
36         </configuration>
37     </plugin>
38
39     <plugin>
40       <groupId>org.apache.maven.plugins</groupId>
41       <artifactId>maven-install-plugin</artifactId>
42       <configuration>
43         <skip>false</skip>
44       </configuration>
45      </plugin>
46
47       <plugin>
48         <groupId>org.codehaus.mojo</groupId>
49         <artifactId>exec-maven-plugin</artifactId>
50         <configuration>
51           <skip>true</skip>
52         </configuration>
53         <executions>
54           <execution>
55             <phase>none</phase>
56           </execution>
57         </executions>
58       </plugin>
59
60     </plugins>
61   </build>
62
63 </project>