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