fix few bugs and unused issues in functional tests
[transportpce.git] / pce / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright © 2017 AT&T and others. All rights reserved. This program
4     and the accompanying materials are made available under the terms of the
5     Eclipse Public License v1.0 which accompanies this distribution, and is available
6     at http://www.eclipse.org/legal/epl-v10.html Author: Martial Coulibaly <martial.coulibaly@gfi.com>
7     on behalf of Orange -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0"
9     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.mdsal</groupId>
16         <artifactId>binding-parent</artifactId>
17         <version>6.0.4</version>
18         <relativePath />
19     </parent>
20
21     <groupId>org.opendaylight.transportpce</groupId>
22     <artifactId>transportpce-pce</artifactId>
23     <version>3.0.0-SNAPSHOT</version>
24     <packaging>bundle</packaging>
25
26     <dependencies>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>transportpce-common</artifactId>
30             <version>${project.version}</version>
31         </dependency>
32         <dependency>
33             <groupId>org.jgrapht</groupId>
34             <artifactId>jgrapht-core</artifactId>
35             <version>1.2.0</version>
36         </dependency>
37
38         <!-- Aluminium bump -->
39         <dependency>
40             <groupId>org.opendaylight.mdsal</groupId>
41             <artifactId>mdsal-binding-runtime-spi</artifactId>
42         </dependency>
43
44         <!-- Sodium bump: javax.annotation.Nullable and friends -->
45         <dependency>
46             <groupId>com.google.code.findbugs</groupId>
47             <artifactId>jsr305</artifactId>
48             <version>3.0.2</version>
49             <optional>true</optional>
50         </dependency>
51
52         <dependency>
53             <groupId>org.opendaylight.transportpce</groupId>
54             <artifactId>test-common</artifactId>
55             <version>${project.version}</version>
56             <scope>test</scope>
57         </dependency>
58
59         <dependency>
60             <groupId>org.mockito</groupId>
61             <artifactId>mockito-core</artifactId>
62             <version>2.25.0</version>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.powermock</groupId>
67             <artifactId>powermock-core</artifactId>
68             <version>2.0.2</version>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>org.powermock</groupId>
73             <artifactId>powermock-api-mockito2</artifactId>
74             <version>2.0.2</version>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.powermock</groupId>
79             <artifactId>powermock-module-junit4</artifactId>
80             <version>2.0.2</version>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.glassfish.jersey.containers</groupId>
85             <artifactId>jersey-container-grizzly2-http</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.glassfish.jersey.test-framework</groupId>
90             <artifactId>jersey-test-framework-core</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.glassfish.jersey.test-framework.providers</groupId>
95             <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>javax.activation</groupId>
100             <artifactId>javax.activation-api</artifactId>
101             <version>1.2.0</version>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.glassfish.jersey.inject</groupId>
106             <artifactId>jersey-hk2</artifactId>
107             <scope>test</scope>
108         </dependency>
109     </dependencies>
110
111     <build>
112         <plugins>
113             <plugin>
114                 <groupId>org.apache.maven.plugins</groupId>
115                 <artifactId>maven-jar-plugin</artifactId>
116                 <version>2.6</version>
117                 <executions>
118                     <execution>
119                         <goals>
120                             <goal>test-jar</goal>
121                         </goals>
122                     </execution>
123                 </executions>
124             </plugin>
125         </plugins>
126     </build>
127
128 </project>