update HC parent POM
[demo.git] / vnfs / honeycomb_plugin / sample_plugin / sample-distribution / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4 <!--parent>
5 <groupId>io.fd.honeycomb.common</groupId>
6     <artifactId>minimal-distribution-parent</artifactId>
7     <version>1.16.9</version>
8 </parent-->
9
10 <parent>
11     <groupId>org.openecomp.demo.vnf</groupId>
12     <artifactId>hc-openecomp</artifactId>
13     <version>1.0.0-SNAPSHOT</version>
14     <relativePath>../parent-pom/pom.xml</relativePath>
15 </parent>
16
17   <modelVersion>4.0.0</modelVersion>
18   <artifactId>sample-distribution</artifactId>
19
20   <properties>
21     <main.class>io.fd.honeycomb.vpp.integration.distro.Main</main.class>
22     <v3po.version>1.16.9</v3po.version>
23     <lisp.version>1.16.9</lisp.version>
24     <vpp.common.min.distro.version>1.16.9</vpp.common.min.distro.version>
25     <vppnsh.version>1.16.9</vppnsh.version>
26   </properties>
27
28   <build>
29     <plugins>
30       <plugin>
31         <artifactId>maven-compiler-plugin</artifactId>
32       </plugin>
33       <plugin>
34         <groupId>org.codehaus.gmaven</groupId>
35         <artifactId>groovy-maven-plugin</artifactId>
36       </plugin>
37       <plugin>
38         <groupId>org.apache.maven.plugins</groupId>
39         <artifactId>maven-jar-plugin</artifactId>
40       </plugin>
41       <plugin>
42         <groupId>org.apache.maven.plugins</groupId>
43         <artifactId>maven-dependency-plugin</artifactId>
44       </plugin>
45       <plugin>
46         <artifactId>maven-assembly-plugin</artifactId>
47       </plugin>
48
49 <plugin>
50   <groupId>org.apache.maven.plugins</groupId>
51   <artifactId>maven-deploy-plugin</artifactId>
52   <configuration>
53     <skip>false</skip>
54   </configuration>
55 </plugin>
56
57 <plugin>
58         <groupId>org.apache.maven.plugins</groupId>
59         <artifactId>maven-install-plugin</artifactId>
60         <configuration>
61           <skip>false</skip>
62         </configuration>
63       </plugin>
64
65     </plugins>
66   </build>
67
68   <dependencies>
69     <dependency>
70       <groupId>io.fd.honeycomb.vpp</groupId>
71       <artifactId>minimal-distribution</artifactId>
72       <version>${vpp.common.min.distro.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>io.fd.honeycomb.v3po</groupId>
76       <artifactId>v3po2vpp</artifactId>
77       <version>${v3po.version}</version>
78     </dependency>
79     <dependency>
80       <groupId>io.fd.honeycomb.lisp</groupId>
81       <artifactId>lisp2vpp</artifactId>
82       <version>${lisp.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>io.fd.honeycomb.vppnsh</groupId>
86       <artifactId>vppnsh-impl</artifactId>
87       <version>${vppnsh.version}</version>
88     </dependency>
89     <dependency>
90       <groupId>org.openecomp.demo.vnf</groupId>
91       <artifactId>sample-plugin-impl</artifactId>
92       <version>latest</version>
93     </dependency>
94   </dependencies>
95
96 </project>