98288ce734c16be3129929f32858e8303fd21050
[transportpce.git] / test-common / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright © 2017 Orange and others. All rights reserved. This program and the accompanying materials
4     are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution,
5     and is available at http://www.eclipse.org/legal/epl-v10.html Author: Martial Coulibaly <martial.coulibaly@gfi.com>
6     on behalf of Orange -->
7 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9     <modelVersion>4.0.0</modelVersion>
10
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>bundle-parent</artifactId>
14         <version>5.0.3</version>
15         <relativePath/>
16     </parent>
17
18     <groupId>org.opendaylight.transportpce</groupId>
19     <artifactId>test-common</artifactId>
20     <version>0.5.0-SNAPSHOT</version>
21     <packaging>bundle</packaging>
22
23     <dependencyManagement>
24         <dependencies>
25             <dependency>
26                 <groupId>org.opendaylight.controller</groupId>
27                 <artifactId>mdsal-artifacts</artifactId>
28                 <version>1.10.2-SNAPSHOT</version>
29                 <type>pom</type>
30                 <scope>import</scope>
31             </dependency>
32             <dependency>
33                 <groupId>org.opendaylight.yangtools</groupId>
34                 <artifactId>yangtools-artifacts</artifactId>
35                 <version>3.0.6</version>
36                 <type>pom</type>
37                 <scope>import</scope>
38             </dependency>
39         </dependencies>
40     </dependencyManagement>
41
42     <dependencies>
43         <dependency>
44             <groupId>com.google.guava</groupId>
45             <artifactId>guava</artifactId>
46         </dependency>
47
48         <dependency>
49             <groupId>org.slf4j</groupId>
50             <artifactId>slf4j-api</artifactId>
51         </dependency>
52
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>sal-binding-broker-impl</artifactId>
56         </dependency>
57
58         <dependency>
59             <groupId>org.opendaylight.controller</groupId>
60             <artifactId>sal-binding-api</artifactId>
61         </dependency>
62
63         <dependency>
64             <groupId>org.opendaylight.yangtools</groupId>
65             <artifactId>yang-data-codec-xml</artifactId>
66         </dependency>
67
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>yang-data-codec-gson</artifactId>
71         </dependency>
72
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>transportpce-common</artifactId>
76             <version>${project.version}</version>
77         </dependency>
78
79         <!-- Sodium bump: javax.annotation.Nullable and friends -->
80         <dependency>
81             <groupId>com.google.code.findbugs</groupId>
82             <artifactId>jsr305</artifactId>
83             <optional>true</optional>
84         </dependency>
85
86     </dependencies>
87 </project>