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