Update SH and PCE to support intermediate rates
[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>8.0.7</version>
18         <relativePath />
19     </parent>
20
21     <groupId>org.opendaylight.transportpce</groupId>
22     <artifactId>transportpce-pce</artifactId>
23     <version>5.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         <dependency>
38             <groupId>org.opendaylight.mdsal</groupId>
39             <artifactId>mdsal-binding-runtime-spi</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.glassfish.jersey.core</groupId>
43             <artifactId>jersey-client</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.glassfish.jersey.ext</groupId>
47             <artifactId>jersey-proxy-client</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.glassfish.jersey.media</groupId>
51             <artifactId>jersey-media-json-jackson</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>com.fasterxml.jackson.datatype</groupId>
55             <artifactId>jackson-datatype-jsr310</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.transportpce</groupId>
59             <artifactId>test-common</artifactId>
60             <version>${project.version}</version>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.mdsal</groupId>
65             <artifactId>mdsal-binding-generator</artifactId>
66             <scope>test</scope>
67         </dependency>
68
69         <dependency>
70             <groupId>org.mockito</groupId>
71             <artifactId>mockito-core</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.powermock</groupId>
76             <artifactId>powermock-core</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.powermock</groupId>
81             <artifactId>powermock-api-mockito2</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.powermock</groupId>
86             <artifactId>powermock-module-junit4</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.glassfish.jersey.containers</groupId>
91             <artifactId>jersey-container-grizzly2-http</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.glassfish.jersey.test-framework</groupId>
96             <artifactId>jersey-test-framework-core</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.glassfish.jersey.test-framework.providers</groupId>
101             <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>javax.activation</groupId>
106             <artifactId>javax.activation-api</artifactId>
107             <version>1.2.0</version>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <groupId>org.glassfish.jersey.inject</groupId>
112             <artifactId>jersey-hk2</artifactId>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>jakarta.xml.bind</groupId>
117             <artifactId>jakarta.xml.bind-api</artifactId>
118             <scope>test</scope>
119         </dependency>
120     </dependencies>
121
122     <build>
123         <plugins>
124             <plugin>
125                 <groupId>org.apache.maven.plugins</groupId>
126                 <artifactId>maven-jar-plugin</artifactId>
127                 <executions>
128                     <execution>
129                         <goals>
130                             <goal>test-jar</goal>
131                         </goals>
132                     </execution>
133                 </executions>
134             </plugin>
135         </plugins>
136     </build>
137
138 </project>