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