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