Clean poms after Chlorine bump
[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.1</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-annotations</artifactId>
136     </dependency>
137     <dependency>
138       <groupId>org.glassfish.jersey.core</groupId>
139       <artifactId>jersey-common</artifactId>
140     </dependency>
141     <dependency>
142       <groupId>org.glassfish.jersey.core</groupId>
143       <artifactId>jersey-server</artifactId>
144     </dependency>
145     <dependency>
146       <groupId>org.glassfish.jersey.core</groupId>
147       <artifactId>jersey-client</artifactId>
148     </dependency>
149     <dependency>
150       <groupId>org.glassfish.jersey.ext</groupId>
151       <artifactId>jersey-proxy-client</artifactId>
152     </dependency>
153     <dependency>
154       <groupId>org.glassfish.jersey.media</groupId>
155       <artifactId>jersey-media-json-jackson</artifactId>
156     </dependency>
157     <dependency>
158       <groupId>org.jgrapht</groupId>
159       <artifactId>jgrapht-core</artifactId>
160       <version>1.2.0</version>
161     </dependency>
162     <dependency>
163       <groupId>jakarta.ws.rs</groupId>
164       <artifactId>jakarta.ws.rs-api</artifactId>
165     </dependency>
166
167
168     <!-- Testing Dependencies -->
169     <dependency>
170       <groupId>org.opendaylight.transportpce</groupId>
171       <artifactId>test-common</artifactId>
172       <version>${project.version}</version>
173       <scope>test</scope>
174     </dependency>
175     <dependency>
176       <groupId>org.opendaylight.mdsal</groupId>
177       <artifactId>mdsal-binding-generator</artifactId>
178       <scope>test</scope>
179     </dependency>
180     <dependency>
181       <groupId>org.mockito</groupId>
182       <artifactId>mockito-core</artifactId>
183       <scope>test</scope>
184     </dependency>
185     <dependency>
186       <groupId>org.glassfish.jersey.containers</groupId>
187       <artifactId>jersey-container-grizzly2-http</artifactId>
188       <scope>test</scope>
189     </dependency>
190     <dependency>
191       <groupId>org.glassfish.jersey.test-framework</groupId>
192       <artifactId>jersey-test-framework-core</artifactId>
193       <scope>test</scope>
194     </dependency>
195     <dependency>
196       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
197       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
198       <scope>test</scope>
199     </dependency>
200     <dependency>
201       <groupId>org.glassfish.jersey.inject</groupId>
202       <artifactId>jersey-hk2</artifactId>
203       <scope>test</scope>
204     </dependency>
205     <dependency>
206       <groupId>org.glassfish.grizzly</groupId>
207       <artifactId>grizzly-http-server</artifactId>
208       <version>2.4.0</version>
209       <scope>test</scope>
210     </dependency>
211     <dependency>
212       <groupId>javax.activation</groupId>
213       <artifactId>javax.activation-api</artifactId>
214       <version>1.2.0</version>
215       <scope>test</scope>
216     </dependency>
217     <dependency>
218       <groupId>jakarta.xml.bind</groupId>
219       <artifactId>jakarta.xml.bind-api</artifactId>
220       <scope>test</scope>
221     </dependency>
222   </dependencies>
223
224   <build>
225     <plugins>
226       <plugin>
227         <groupId>org.apache.maven.plugins</groupId>
228         <artifactId>maven-jar-plugin</artifactId>
229         <executions>
230           <execution>
231             <goals>
232               <goal>test-jar</goal>
233             </goals>
234           </execution>
235         </executions>
236       </plugin>
237     </plugins>
238   </build>
239 </project>