Fix func. tests RFC8040 yang mount utils DS calls
[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"
8     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10     <modelVersion>4.0.0</modelVersion>
11
12     <parent>
13         <groupId>org.opendaylight.mdsal</groupId>
14         <artifactId>binding-parent</artifactId>
15         <version>8.0.7</version>
16         <relativePath />
17     </parent>
18
19     <groupId>org.opendaylight.transportpce</groupId>
20     <artifactId>test-common</artifactId>
21     <version>5.0.0-SNAPSHOT</version>
22     <packaging>bundle</packaging>
23     <dependencyManagement>
24         <dependencies>
25             <dependency>
26                 <groupId>org.opendaylight.netconf</groupId>
27                 <artifactId>netconf-artifacts</artifactId>
28                 <version>2.0.11</version>
29                 <scope>import</scope>
30                 <type>pom</type>
31             </dependency>
32         </dependencies>
33     </dependencyManagement>
34     <dependencies>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>transportpce-api</artifactId>
38             <version>${project.version}</version>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.yangtools</groupId>
42             <artifactId>yang-data-codec-xml</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.yangtools</groupId>
46             <artifactId>yang-data-codec-gson</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal</groupId>
50             <artifactId>mdsal-binding-runtime-spi</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>mdsal-binding-dom-adapter</artifactId>
55         </dependency>
56         <!-- Aluminium bump: undocumented new dependencies -->
57         <dependency>
58             <groupId>org.opendaylight.mdsal</groupId>
59             <artifactId>mdsal-dom-broker</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.mdsal</groupId>
63             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
64         </dependency>
65         <!-- Sodium bump: javax.annotation.Nullable and friends -->
66         <dependency>
67             <groupId>com.google.code.findbugs</groupId>
68             <artifactId>jsr305</artifactId>
69             <version>3.0.2</version>
70             <optional>true</optional>
71         </dependency>
72     </dependencies>
73
74 </project>