Fix previous test cases and add new ones
[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>5.0.9</version>
14         <relativePath />
15     </parent>
16
17     <groupId>org.opendaylight.transportpce</groupId>
18     <artifactId>transportpce-common</artifactId>
19     <version>2.0.0-SNAPSHOT</version>
20     <packaging>bundle</packaging>
21
22     <dependencyManagement>
23         <dependencies>
24             <dependency>
25                 <groupId>org.opendaylight.netconf</groupId>
26                 <artifactId>netconf-artifacts</artifactId>
27                 <version>1.8.0-SNAPSHOT</version>
28                 <scope>import</scope>
29                 <type>pom</type>
30             </dependency>
31             <dependency>
32                 <groupId>org.opendaylight.mdsal</groupId>
33                 <artifactId>mdsal-artifacts</artifactId>
34                 <version>5.0.9</version>
35                 <scope>import</scope>
36                 <type>pom</type>
37             </dependency>
38         </dependencies>
39     </dependencyManagement>
40
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>org.opendaylight.netconf</groupId>
54             <artifactId>sal-netconf-connector</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.mdsal</groupId>
58             <artifactId>mdsal-binding-dom-adapter</artifactId>
59         </dependency>
60
61         <!-- Sodium bump: javax.annotation.Nullable and friends -->
62         <dependency>
63             <groupId>com.google.code.findbugs</groupId>
64             <artifactId>jsr305</artifactId>
65             <version>3.0.2</version>
66             <optional>true</optional>
67         </dependency>
68     </dependencies>
69
70 <!-- skipping test since this is a util project / folder -->
71   <build>
72     <plugins>
73       <plugin>
74         <groupId>org.apache.maven.plugins</groupId>
75         <artifactId>maven-surefire-plugin</artifactId>
76         <version>2.18.1</version>
77         <configuration>
78           <skipTests>true</skipTests>
79         </configuration>
80       </plugin>
81     </plugins>
82   </build>
83
84 </project>