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