b612acc32fe2b8716ada220d4faa28ae350a0953
[honeycomb.git] / lisp / lisp2vpp / 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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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.lisp</groupId>
28     <artifactId>lisp2vpp</artifactId>
29     <name>${project.artifactId}</name>
30     <version>1.16.12-SNAPSHOT</version>
31     <packaging>bundle</packaging>
32
33     <properties>
34         <project.vpp.groupId>io.fd.honeycomb.vpp</project.vpp.groupId>
35         <project.honeycomb.groupId>io.fd.honeycomb</project.honeycomb.groupId>
36     </properties>
37
38     <dependencies>
39         <dependency>
40             <groupId>${project.honeycomb.groupId}</groupId>
41             <artifactId>translate-spi</artifactId>
42             <version>${project.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>${project.vpp.groupId}</groupId>
46             <artifactId>vpp-translate-utils</artifactId>
47             <version>${project.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>lisp-api</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>${project.honeycomb.groupId}</groupId>
56             <artifactId>translate-impl</artifactId>
57             <version>${project.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>${project.honeycomb.groupId}</groupId>
61             <artifactId>cfg-init</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>io.fd.vpp</groupId>
66             <artifactId>jvpp-core</artifactId>
67         </dependency>
68
69         <!-- DI -->
70         <dependency>
71             <groupId>com.google.inject</groupId>
72             <artifactId>guice</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>net.jmob</groupId>
76             <artifactId>guice.conf</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>com.google.inject.extensions</groupId>
80             <artifactId>guice-multibindings</artifactId>
81         </dependency>
82
83         <!-- Testing Dependencies -->
84         <dependency>
85             <groupId>junit</groupId>
86             <artifactId>junit</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.mockito</groupId>
91             <artifactId>mockito-core</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>com.google.inject.extensions</groupId>
96             <artifactId>guice-testlib</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.hamcrest</groupId>
101             <artifactId>hamcrest-all</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>io.fd.honeycomb.vpp</groupId>
106             <artifactId>vpp-translate-test</artifactId>
107             <version>${project.version}</version>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <groupId>io.fd.honeycomb.infra</groupId>
112             <artifactId>test-tools</artifactId>
113             <version>${project.version}</version>
114             <scope>test</scope>
115         </dependency>
116
117     </dependencies>
118 </project>