Initial OpenECOMP Demo commit
[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>io.fd.honeycomb.common</groupId>
12     <artifactId>minimal-distribution-parent</artifactId>
13     <version>1.16.9</version>
14 <relativePath>../parent-pom/pom.xml</relativePath>
15 </parent>
16 <!--
17 <parent>
18     <groupId>org.openecomp.demo.vnf</groupId>
19     <artifactId>demo-aggregator</artifactId>
20     <version>1.0.0</version>
21 <relativePath>../../../pom.xml</relativePath>
22   </parent>
23 -->
24
25   <modelVersion>4.0.0</modelVersion>
26   <groupId>org.openecomp.demo.vnf</groupId>
27   <artifactId>sample-distribution</artifactId>
28   <version>1.0.0</version>
29
30   <properties>
31     <main.class>io.fd.honeycomb.vpp.integration.distro.Main</main.class>
32     <v3po.version>1.16.9</v3po.version>
33     <lisp.version>1.16.9</lisp.version>
34     <vpp.common.min.distro.version>1.16.9</vpp.common.min.distro.version>
35     <vppnsh.version>1.16.9</vppnsh.version>
36   </properties>
37
38   <build>
39     <plugins>
40       <plugin>
41         <artifactId>maven-compiler-plugin</artifactId>
42       </plugin>
43       <plugin>
44         <groupId>org.codehaus.gmaven</groupId>
45         <artifactId>groovy-maven-plugin</artifactId>
46       </plugin>
47       <plugin>
48         <groupId>org.apache.maven.plugins</groupId>
49         <artifactId>maven-jar-plugin</artifactId>
50       </plugin>
51       <plugin>
52         <groupId>org.apache.maven.plugins</groupId>
53         <artifactId>maven-dependency-plugin</artifactId>
54       </plugin>
55       <plugin>
56         <artifactId>maven-assembly-plugin</artifactId>
57       </plugin>
58
59 <plugin>
60   <groupId>org.apache.maven.plugins</groupId>
61   <artifactId>maven-deploy-plugin</artifactId>
62   <configuration>
63     <skip>false</skip>
64   </configuration>
65 </plugin>
66
67 <plugin>
68         <groupId>org.apache.maven.plugins</groupId>
69         <artifactId>maven-install-plugin</artifactId>
70         <configuration>
71           <skip>false</skip>
72         </configuration>
73       </plugin>
74
75     </plugins>
76   </build>
77
78   <dependencies>
79     <dependency>
80       <groupId>io.fd.honeycomb.vpp</groupId>
81       <artifactId>minimal-distribution</artifactId>
82       <version>${vpp.common.min.distro.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>io.fd.honeycomb.v3po</groupId>
86       <artifactId>v3po2vpp</artifactId>
87       <version>${v3po.version}</version>
88     </dependency>
89     <dependency>
90       <groupId>io.fd.honeycomb.lisp</groupId>
91       <artifactId>lisp2vpp</artifactId>
92       <version>${lisp.version}</version>
93     </dependency>
94     <dependency>
95       <groupId>io.fd.honeycomb.vppnsh</groupId>
96       <artifactId>vppnsh-impl</artifactId>
97       <version>${vppnsh.version}</version>
98     </dependency>
99 <dependency>
100       <groupId>org.openecomp.demo.vnf</groupId>
101       <artifactId>sample-plugin-impl</artifactId>
102       <version>1.0.0</version>
103     </dependency>
104   </dependencies>
105
106 </project>