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