79f1d66503e5412e49425d0714b6d72e2d385a14
[honeycomb.git] / v3po / v3po2vpp / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2016 Cisco and/or its affiliates.
4   ~
5   ~ Licensed under the Apache License, Version 2.0 (the "License");
6   ~ you may not use this file except in compliance with the License.
7   ~ You may obtain a copy of the License at:
8   ~
9   ~     http://www.apache.org/licenses/LICENSE-2.0
10   ~
11   ~ Unless required by applicable law or agreed to in writing, software
12   ~ distributed under the License is distributed on an "AS IS" BASIS,
13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~ See the License for the specific language governing permissions and
15   ~ limitations under the License.
16   -->
17 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19     <parent>
20         <groupId>io.fd.honeycomb.vpp</groupId>
21         <artifactId>vpp-impl-parent</artifactId>
22         <version>1.16.12-SNAPSHOT</version>
23         <relativePath>../../vpp-common/vpp-impl-parent</relativePath>
24     </parent>
25
26     <modelVersion>4.0.0</modelVersion>
27     <groupId>io.fd.honeycomb.v3po</groupId>
28     <artifactId>v3po2vpp</artifactId>
29     <name>${project.artifactId}</name>
30     <version>1.16.12-SNAPSHOT</version>
31     <packaging>bundle</packaging>
32
33     <dependencies>
34         <dependency>
35             <groupId>io.fd.honeycomb</groupId>
36             <artifactId>translate-spi</artifactId>
37             <version>${project.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>io.fd.honeycomb</groupId>
41             <artifactId>notification-api</artifactId>
42             <version>${project.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>io.fd.honeycomb</groupId>
46             <artifactId>translate-utils</artifactId>
47             <version>${project.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>io.fd.honeycomb.vpp</groupId>
51             <artifactId>vpp-translate-utils</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>v3po-api</artifactId>
57             <version>${project.version}</version>
58         </dependency>
59
60         <dependency>
61             <groupId>io.fd.honeycomb</groupId>
62             <artifactId>translate-impl</artifactId>
63             <version>${project.version}</version>
64         </dependency>
65         <dependency>
66             <groupId>io.fd.honeycomb</groupId>
67             <artifactId>cfg-init</artifactId>
68             <version>${project.version}</version>
69         </dependency>
70         <dependency>
71             <groupId>io.fd.vpp</groupId>
72             <artifactId>jvpp-core</artifactId>
73         </dependency>
74
75         <!-- DI -->
76         <dependency>
77             <groupId>com.google.inject</groupId>
78             <artifactId>guice</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>net.jmob</groupId>
82             <artifactId>guice.conf</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>com.google.inject.extensions</groupId>
86             <artifactId>guice-multibindings</artifactId>
87         </dependency>
88
89         <!-- Testing Dependencies -->
90         <dependency>
91             <groupId>io.fd.honeycomb.vpp</groupId>
92             <artifactId>vpp-translate-test</artifactId>
93             <version>${project.version}</version>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>junit</groupId>
98             <artifactId>junit</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.mockito</groupId>
103             <artifactId>mockito-core</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.skinny-framework</groupId>
108             <artifactId>skinny-logback</artifactId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>com.google.inject.extensions</groupId>
113             <artifactId>guice-testlib</artifactId>
114             <scope>test</scope>
115         </dependency>
116         <dependency>
117             <groupId>org.hamcrest</groupId>
118             <artifactId>hamcrest-all</artifactId>
119             <scope>test</scope>
120         </dependency>
121     </dependencies>
122 </project>