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