Bump dependencies to newer Sodium SR2 dev versions
[transportpce.git] / common / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright © 2016 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 -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8     <modelVersion>4.0.0</modelVersion>
9
10     <parent>
11         <groupId>org.opendaylight.mdsal</groupId>
12         <artifactId>binding-parent</artifactId>
13         <version>4.0.8</version>
14         <relativePath />
15     </parent>
16
17     <groupId>org.opendaylight.transportpce</groupId>
18     <artifactId>transportpce-common</artifactId>
19     <version>0.5.0-SNAPSHOT</version>
20     <packaging>bundle</packaging>
21
22     <dependencyManagement>
23         <dependencies>
24             <dependency>
25                 <groupId>org.opendaylight.controller</groupId>
26                 <artifactId>mdsal-artifacts</artifactId>
27                 <version>1.10.2-SNAPSHOT</version>
28                 <scope>import</scope>
29                 <type>pom</type>
30             </dependency>
31             <dependency>
32                 <groupId>org.opendaylight.netconf</groupId>
33                 <artifactId>netconf-artifacts</artifactId>
34                 <version>1.7.2-SNAPSHOT</version>
35                 <scope>import</scope>
36                 <type>pom</type>
37             </dependency>
38             <dependency>
39                 <groupId>org.opendaylight.mdsal</groupId>
40                 <artifactId>mdsal-artifacts</artifactId>
41                 <version>4.0.3</version>
42                 <scope>import</scope>
43                 <type>pom</type>
44             </dependency>
45         </dependencies>
46     </dependencyManagement>
47
48     <dependencies>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>transportpce-api</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>sal-binding-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.controller.model</groupId>
60             <artifactId>model-topology</artifactId>
61         </dependency>
62 <!-- Bump to  Fluorine
63         <dependency>
64             <groupId>org.opendaylight.mdsal.model</groupId>
65             <artifactId>ietf-network-2015-06-08</artifactId>
66         </dependency>
67 -->
68         <dependency>
69             <groupId>org.opendaylight.netconf</groupId>
70             <artifactId>sal-netconf-connector</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}.ordmodels</groupId>
74             <artifactId>transportpce-ordmodels-device</artifactId>
75             <version>${project.version}</version>
76         </dependency>
77
78         <dependency>
79             <groupId>org.opendaylight.controller</groupId>
80             <artifactId>sal-binding-broker-impl</artifactId>
81         </dependency>
82
83         <dependency>
84             <groupId>org.opendaylight.yangtools</groupId>
85             <artifactId>yang-data-codec-xml</artifactId>
86         </dependency>
87
88         <dependency>
89             <groupId>org.opendaylight.yangtools</groupId>
90             <artifactId>yang-data-codec-gson</artifactId>
91         </dependency>
92
93         <!-- Testing Dependencies -->
94         <dependency>
95             <groupId>junit</groupId>
96             <artifactId>junit</artifactId>
97             <scope>test</scope>
98         </dependency>
99
100         <dependency>
101             <groupId>org.mockito</groupId>
102             <artifactId>mockito-core</artifactId>
103             <scope>test</scope>
104         </dependency>
105
106         <!-- Sodium bump: javax.annotation.Nullable and friends -->
107         <dependency>
108             <groupId>com.google.code.findbugs</groupId>
109             <artifactId>jsr305</artifactId>
110             <optional>true</optional>
111         </dependency>
112     </dependencies>
113
114 <!-- skipping test since this is a util project / folder -->
115   <build>
116     <plugins>
117       <plugin>
118         <groupId>org.apache.maven.plugins</groupId>
119         <artifactId>maven-surefire-plugin</artifactId>
120         <version>2.18.1</version>
121         <configuration>
122           <skipTests>true</skipTests>
123         </configuration>
124       </plugin>
125     </plugins>
126   </build>
127
128
129 </project>