3bfe58bc3df5747db7ac9624ebc130fd734b191b
[demo.git] / vnfs / honeycomb_plugin / sample_plugin / sample-distribution / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4     Modifications copyright © 2017 AT&T Intellectual Property
5 -->
6
7 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9
10 <parent>
11     <groupId>org.onap.demo.vnf</groupId>
12     <artifactId>hc-onap</artifactId>
13     <version>1.2.1-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       <honeycomb.infra.version>1.16.9</honeycomb.infra.version>
27   </properties>
28
29   <build>
30     <plugins>
31       <plugin>
32         <artifactId>maven-compiler-plugin</artifactId>
33       </plugin>
34       <plugin>
35         <groupId>org.codehaus.gmaven</groupId>
36         <artifactId>groovy-maven-plugin</artifactId>
37       </plugin>
38       <plugin>
39         <groupId>org.apache.maven.plugins</groupId>
40         <artifactId>maven-jar-plugin</artifactId>
41       </plugin>
42       <plugin>
43         <groupId>org.apache.maven.plugins</groupId>
44         <artifactId>maven-dependency-plugin</artifactId>
45       </plugin>
46       <plugin>
47         <artifactId>maven-assembly-plugin</artifactId>
48       </plugin>
49
50 <plugin>
51   <groupId>org.apache.maven.plugins</groupId>
52   <artifactId>maven-deploy-plugin</artifactId>
53   <configuration>
54     <skip>false</skip>
55   </configuration>
56 </plugin>
57
58 <plugin>
59         <groupId>org.apache.maven.plugins</groupId>
60         <artifactId>maven-install-plugin</artifactId>
61         <configuration>
62           <skip>false</skip>
63         </configuration>
64       </plugin>
65
66     </plugins>
67   </build>
68
69   <dependencies>
70     <dependency>
71       <groupId>io.fd.honeycomb.vpp</groupId>
72       <artifactId>minimal-distribution</artifactId>
73       <version>${vpp.common.min.distro.version}</version>
74     </dependency>
75     <dependency>
76       <groupId>io.fd.honeycomb.v3po</groupId>
77       <artifactId>v3po2vpp</artifactId>
78       <version>${v3po.version}</version>
79     </dependency>
80     <dependency>
81       <groupId>io.fd.honeycomb.lisp</groupId>
82       <artifactId>lisp2vpp</artifactId>
83       <version>${lisp.version}</version>
84     </dependency>
85     <dependency>
86       <groupId>io.fd.honeycomb.vppnsh</groupId>
87       <artifactId>vppnsh-impl</artifactId>
88       <version>${vppnsh.version}</version>
89     </dependency>
90     <dependency>
91       <groupId>io.fd.honeycomb.common</groupId>
92       <artifactId>sample-plugin-impl</artifactId>
93       <version>${honeycomb.infra.version}</version>
94     </dependency>
95   </dependencies>
96
97 </project>