Honeycomb 1.19.04-RC2
[honeycomb.git] / infra / test-utils / test-tools / 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
18 <project xmlns="http://maven.apache.org/POM/4.0.0"
19          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21     <parent>
22         <groupId>io.fd.honeycomb.common</groupId>
23         <artifactId>impl-parent</artifactId>
24         <version>1.19.04-RC2</version>
25         <relativePath>../../../common/impl-parent</relativePath>
26     </parent>
27     <modelVersion>4.0.0</modelVersion>
28
29     <groupId>io.fd.honeycomb.infra</groupId>
30     <artifactId>test-tools</artifactId>
31     <name>${project.artifactId}</name>
32
33     <dependencies>
34         <dependency>
35             <groupId>io.fd.honeycomb.infra.test</groupId>
36             <artifactId>test-api</artifactId>
37             <version>${project.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>io.fd.honeycomb</groupId>
41             <artifactId>translate-utils</artifactId>
42             <version>${project.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.controller</groupId>
46             <artifactId>sal-core-api</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.controller</groupId>
50             <artifactId>sal-binding-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>mdsal-binding-dom-codec</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.controller</groupId>
58             <artifactId>sal-binding-broker-impl</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.yangtools</groupId>
62             <artifactId>yang-data-codec-gson</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>com.google.guava</groupId>
66             <artifactId>guava</artifactId>
67         </dependency>
68
69         <dependency>
70             <groupId>junit</groupId>
71             <artifactId>junit</artifactId>
72             <scope>compile</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.skinny-framework</groupId>
76             <artifactId>skinny-logback</artifactId>
77             <version>${skinny.logback.version}</version>
78             <scope>compile</scope>
79         </dependency>
80
81         <dependency>
82             <groupId>org.mockito</groupId>
83             <artifactId>mockito-core</artifactId>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>org.apache.commons</groupId>
88             <artifactId>commons-lang3</artifactId>
89             <version>3.8.1</version>
90         </dependency>
91         <dependency>
92             <groupId>org.javassist</groupId>
93             <artifactId>javassist</artifactId>
94             <scope>compile</scope>
95         </dependency>
96     </dependencies>
97 </project>