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