HONEYCOMB-58 - Routing Api
[honeycomb.git] / vpp-common / vpp-translate-utils / 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     <artifactId>vpp-translate-utils</artifactId>
28     <name>${project.artifactId}</name>
29     <version>1.16.12-SNAPSHOT</version>
30     <packaging>bundle</packaging>
31
32     <properties>
33         <commons.codec.version>1.9</commons.codec.version>
34         <system.rules.version>1.16.0</system.rules.version>
35     </properties>
36
37     <dependencies>
38         <dependency>
39             <groupId>io.fd.honeycomb</groupId>
40             <artifactId>translate-utils</artifactId>
41             <version>${project.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>naming-context-api</artifactId>
46             <version>${project.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>io.fd.vpp</groupId>
50             <artifactId>jvpp-registry</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>io.fd.vpp</groupId>
54             <artifactId>jvpp-core</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.mdsal.model</groupId>
58             <artifactId>ietf-inet-types-2013-07-15</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.mdsal.model</groupId>
62             <artifactId>ietf-interfaces</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>io.fd.honeycomb</groupId>
66             <artifactId>data-api</artifactId>
67             <version>${project.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>commons-codec</groupId>
71             <artifactId>commons-codec</artifactId>
72             <version>${commons.codec.version}</version>
73         </dependency>
74
75         <dependency>
76             <groupId>junit</groupId>
77             <artifactId>junit</artifactId>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>org.mockito</groupId>
82             <artifactId>mockito-core</artifactId>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.skinny-framework</groupId>
87             <artifactId>skinny-logback</artifactId>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>com.github.stefanbirkner</groupId>
92             <artifactId>system-rules</artifactId>
93             <version>${system.rules.version}</version>
94             <scope>test</scope>
95         </dependency>
96     </dependencies>
97 </project>