Bump honeycomb version to 1.18.04-SNAPSHOT
[honeycomb.git] / infra / 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.common</groupId>
21         <artifactId>impl-parent</artifactId>
22         <version>1.18.04-SNAPSHOT</version>
23         <relativePath>../../common/impl-parent</relativePath>
24     </parent>
25
26     <modelVersion>4.0.0</modelVersion>
27     <groupId>io.fd.honeycomb</groupId>
28     <artifactId>translate-utils</artifactId>
29     <name>${project.artifactId}</name>
30     <version>1.18.04-SNAPSHOT</version>
31     <packaging>bundle</packaging>
32
33     <properties>
34         <jgrapht.version>0.9.2</jgrapht.version>
35     </properties>
36
37     <dependencies>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>translate-api</artifactId>
41             <version>${project.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>translate-spi</artifactId>
46             <version>${project.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.controller</groupId>
50             <artifactId>sal-core-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.controller</groupId>
54             <artifactId>sal-binding-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.mdsal</groupId>
58             <artifactId>mdsal-binding-dom-codec</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.yangtools</groupId>
62             <artifactId>yang-data-codec-gson</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.jgrapht</groupId>
66             <artifactId>jgrapht-core</artifactId>
67             <version>${jgrapht.version}</version>
68         </dependency>
69
70         <dependency>
71             <groupId>junit</groupId>
72             <artifactId>junit</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.hamcrest</groupId>
77             <artifactId>hamcrest-all</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.slf4j</groupId>
87             <artifactId>slf4j-api</artifactId>
88         </dependency>
89     </dependencies>
90
91     <build>
92         <plugins>
93             <plugin>
94                 <groupId>org.apache.maven.plugins</groupId>
95                 <artifactId>maven-jar-plugin</artifactId>
96                 <executions>
97                     <execution>
98                         <goals>
99                             <goal>test-jar</goal>
100                         </goals>
101                     </execution>
102                 </executions>
103             </plugin>
104         </plugins>
105     </build>
106 </project>