Upgrade device 7.1.0 sims version
[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>10.0.6</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.transportpce</groupId>
22   <artifactId>transportpce-pce</artifactId>
23   <version>7.0.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25
26   <properties>
27     <transportpce.models.version>17.2.0</transportpce.models.version>
28   </properties>
29
30   <dependencyManagement>
31     <dependencies>
32       <dependency>
33         <groupId>org.opendaylight.transportpce.models</groupId>
34         <artifactId>transportpce-models-artifacts</artifactId>
35         <version>${transportpce.models.version}</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39     </dependencies>
40   </dependencyManagement>
41
42   <dependencies>
43     <dependency>
44       <groupId>org.opendaylight.transportpce.models</groupId>
45       <artifactId>openroadm-common-2.2.1</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.transportpce.models</groupId>
49       <artifactId>openroadm-common-7.1.0</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.transportpce.models</groupId>
53       <artifactId>openroadm-common-10.1.0</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.transportpce.models</groupId>
57       <artifactId>openroadm-device-2.2.1</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.transportpce.models</groupId>
61       <artifactId>openroadm-device-7.1.0</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.transportpce.models</groupId>
65       <artifactId>openroadm-network-10.1.0</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.transportpce.models</groupId>
69       <artifactId>openroadm-service-10.1.0</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>${project.groupId}</groupId>
73       <artifactId>transportpce-api</artifactId>
74       <version>${project.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>${project.groupId}</groupId>
78       <artifactId>transportpce-common</artifactId>
79       <version>${project.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.yangtools</groupId>
83       <artifactId>concepts</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.yangtools</groupId>
87       <artifactId>yang-common</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.yangtools</groupId>
91       <artifactId>yang-model-api</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.yangtools</groupId>
95       <artifactId>yang-data-api</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.yangtools</groupId>
99       <artifactId>yang-data-impl</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.yangtools</groupId>
103       <artifactId>yang-data-codec-gson</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
107       <artifactId>rfc6991-ietf-inet-types</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
111       <artifactId>rfc6991-ietf-yang-types</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
115       <artifactId>rfc8345-ietf-network</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
119       <artifactId>rfc8345-ietf-network-topology</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>org.opendaylight.mdsal</groupId>
123       <artifactId>mdsal-common-api</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.mdsal</groupId>
127       <artifactId>yang-binding</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>org.opendaylight.mdsal</groupId>
131       <artifactId>mdsal-binding-api</artifactId>
132     </dependency>
133     <dependency>
134       <groupId>org.opendaylight.mdsal</groupId>
135       <artifactId>mdsal-binding-dom-codec</artifactId>
136     </dependency>
137     <dependency>
138       <groupId>org.opendaylight.mdsal</groupId>
139       <artifactId>mdsal-binding-dom-codec-spi</artifactId>
140     </dependency>
141     <dependency>
142       <groupId>org.opendaylight.mdsal</groupId>
143       <artifactId>mdsal-binding-runtime-api</artifactId>
144     </dependency>
145     <dependency>
146       <groupId>org.opendaylight.mdsal</groupId>
147       <artifactId>mdsal-binding-runtime-spi</artifactId>
148     </dependency>
149     <dependency>
150       <groupId>com.google.guava</groupId>
151       <artifactId>guava</artifactId>
152     </dependency>
153     <dependency>
154       <groupId>com.google.code.gson</groupId>
155       <artifactId>gson</artifactId>
156     </dependency>
157     <dependency>
158       <groupId>com.fasterxml.jackson.core</groupId>
159       <artifactId>jackson-annotations</artifactId>
160     </dependency>
161     <dependency>
162       <groupId>org.glassfish.jersey.core</groupId>
163       <artifactId>jersey-common</artifactId>
164     </dependency>
165     <dependency>
166       <groupId>org.glassfish.jersey.core</groupId>
167       <artifactId>jersey-server</artifactId>
168     </dependency>
169     <dependency>
170       <groupId>org.glassfish.jersey.core</groupId>
171       <artifactId>jersey-client</artifactId>
172     </dependency>
173     <dependency>
174       <groupId>org.glassfish.jersey.ext</groupId>
175       <artifactId>jersey-proxy-client</artifactId>
176     </dependency>
177     <dependency>
178       <groupId>org.glassfish.jersey.media</groupId>
179       <artifactId>jersey-media-json-jackson</artifactId>
180     </dependency>
181     <dependency>
182       <groupId>org.jgrapht</groupId>
183       <artifactId>jgrapht-core</artifactId>
184       <version>1.2.0</version>
185     </dependency>
186     <dependency>
187       <groupId>jakarta.ws.rs</groupId>
188       <artifactId>jakarta.ws.rs-api</artifactId>
189     </dependency>
190
191     <!-- Testing Dependencies -->
192     <dependency>
193       <groupId>org.opendaylight.transportpce</groupId>
194       <artifactId>test-common</artifactId>
195       <version>${project.version}</version>
196       <scope>test</scope>
197     </dependency>
198     <dependency>
199       <groupId>org.opendaylight.mdsal</groupId>
200       <artifactId>mdsal-binding-generator</artifactId>
201       <scope>test</scope>
202     </dependency>
203     <dependency>
204       <groupId>org.mockito</groupId>
205       <artifactId>mockito-core</artifactId>
206       <scope>test</scope>
207     </dependency>
208     <dependency>
209       <groupId>org.glassfish.jersey.containers</groupId>
210       <artifactId>jersey-container-grizzly2-http</artifactId>
211       <scope>test</scope>
212     </dependency>
213     <dependency>
214       <groupId>org.glassfish.jersey.test-framework</groupId>
215       <artifactId>jersey-test-framework-core</artifactId>
216       <scope>test</scope>
217     </dependency>
218     <dependency>
219       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
220       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
221       <scope>test</scope>
222     </dependency>
223     <dependency>
224       <groupId>org.glassfish.jersey.inject</groupId>
225       <artifactId>jersey-hk2</artifactId>
226       <scope>test</scope>
227     </dependency>
228     <dependency>
229       <groupId>org.glassfish.grizzly</groupId>
230       <artifactId>grizzly-http-server</artifactId>
231       <version>2.4.0</version>
232       <scope>test</scope>
233     </dependency>
234     <dependency>
235       <groupId>javax.activation</groupId>
236       <artifactId>javax.activation-api</artifactId>
237       <version>1.2.0</version>
238       <scope>test</scope>
239     </dependency>
240     <dependency>
241       <groupId>jakarta.xml.bind</groupId>
242       <artifactId>jakarta.xml.bind-api</artifactId>
243       <scope>test</scope>
244     </dependency>
245   </dependencies>
246
247   <build>
248     <plugins>
249       <plugin>
250         <groupId>org.apache.maven.plugins</groupId>
251         <artifactId>maven-jar-plugin</artifactId>
252         <executions>
253           <execution>
254             <goals>
255               <goal>test-jar</goal>
256             </goals>
257           </execution>
258         </executions>
259       </plugin>
260     </plugins>
261   </build>
262 </project>