GNPy client refactor
[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>7.0.5</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         <dependency>
52             <groupId>org.glassfish.jersey.core</groupId>
53             <artifactId>jersey-client</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.glassfish.jersey.ext</groupId>
57             <artifactId>jersey-proxy-client</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.glassfish.jersey.inject</groupId>
61             <artifactId>jersey-hk2</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.glassfish.jersey.media</groupId>
65             <artifactId>jersey-media-json-jackson</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>com.fasterxml.jackson.datatype</groupId>
69             <artifactId>jackson-datatype-jsr310</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.transportpce</groupId>
73             <artifactId>test-common</artifactId>
74             <version>${project.version}</version>
75             <scope>test</scope>
76         </dependency>
77
78         <dependency>
79             <groupId>org.mockito</groupId>
80             <artifactId>mockito-core</artifactId>
81             <version>2.25.0</version>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.powermock</groupId>
86             <artifactId>powermock-core</artifactId>
87             <version>2.0.2</version>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.powermock</groupId>
92             <artifactId>powermock-api-mockito2</artifactId>
93             <version>2.0.2</version>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.powermock</groupId>
98             <artifactId>powermock-module-junit4</artifactId>
99             <version>2.0.2</version>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.glassfish.jersey.containers</groupId>
104             <artifactId>jersey-container-grizzly2-http</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.glassfish.jersey.test-framework</groupId>
109             <artifactId>jersey-test-framework-core</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.glassfish.jersey.test-framework.providers</groupId>
114             <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>javax.activation</groupId>
119             <artifactId>javax.activation-api</artifactId>
120             <version>1.2.0</version>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.glassfish.jersey.inject</groupId>
125             <artifactId>jersey-hk2</artifactId>
126             <scope>test</scope>
127         </dependency>
128         <dependency>
129             <groupId>jakarta.xml.bind</groupId>
130             <artifactId>jakarta.xml.bind-api</artifactId>
131             <scope>test</scope>
132         </dependency>
133     </dependencies>
134
135     <build>
136         <plugins>
137             <plugin>
138                 <groupId>org.apache.maven.plugins</groupId>
139                 <artifactId>maven-jar-plugin</artifactId>
140                 <version>2.6</version>
141                 <executions>
142                     <execution>
143                         <goals>
144                             <goal>test-jar</goal>
145                         </goals>
146                     </execution>
147                 </executions>
148             </plugin>
149         </plugins>
150     </build>
151
152 </project>