Bump netconf dependencies to Al SR2
[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.odlparent</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>7.0.7</version>
16         <relativePath />
17     </parent>
18
19     <groupId>org.opendaylight.transportpce</groupId>
20     <artifactId>test-common</artifactId>
21     <version>3.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>1.9.2-SNAPSHOT</version>
29                 <scope>import</scope>
30                 <type>pom</type>
31             </dependency>
32             <dependency>
33                 <groupId>org.opendaylight.mdsal</groupId>
34                 <artifactId>mdsal-artifacts</artifactId>
35                 <version>6.0.7</version>
36                 <scope>import</scope>
37                 <type>pom</type>
38             </dependency>
39         </dependencies>
40     </dependencyManagement>
41     <dependencies>
42         <dependency>
43             <groupId>${project.groupId}.ordmodels</groupId>
44             <artifactId>transportpce-ordmodels-device</artifactId>
45             <version>${project.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>transportpce-api</artifactId>
50             <version>${project.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>transportpce-tapimodels</artifactId>
55             <version>${project.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.netconf</groupId>
59             <artifactId>sal-netconf-connector</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.mdsal</groupId>
63             <artifactId>mdsal-binding-dom-adapter</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal</groupId>
67             <artifactId>mdsal-binding-generator-impl</artifactId>
68         </dependency>
69         <!-- Aluminium bump: undocumented new dependencies -->
70         <dependency>
71             <groupId>org.opendaylight.mdsal</groupId>
72             <artifactId>mdsal-dom-broker</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.mdsal</groupId>
76             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
77         </dependency>
78         <!-- Sodium bump: javax.annotation.Nullable and friends -->
79         <dependency>
80             <groupId>com.google.code.findbugs</groupId>
81             <artifactId>jsr305</artifactId>
82             <version>3.0.2</version>
83             <optional>true</optional>
84         </dependency>
85     </dependencies>
86
87 </project>