d16a95d11af9b607b1168500b1470338d89ff1e8
[bgpcep.git] / pcep / topology / topology-provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10
11 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.bgpcep</groupId>
17         <artifactId>binding-parent</artifactId>
18         <version>0.21.4-SNAPSHOT</version>
19         <relativePath>../../../binding-parent</relativePath>
20     </parent>
21
22     <artifactId>pcep-topology-provider</artifactId>
23     <description>PCEP Topology Provider</description>
24     <packaging>bundle</packaging>
25     <name>${project.artifactId}</name>
26
27     <properties>
28         <odlparent.dependency.enforce>false</odlparent.dependency.enforce>
29     </properties>
30
31     <dependencies>
32         <dependency>
33             <groupId>com.github.spotbugs</groupId>
34             <artifactId>spotbugs-annotations</artifactId>
35             <optional>true</optional>
36         </dependency>
37         <dependency>
38             <groupId>com.google.guava</groupId>
39             <artifactId>guava</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>com.guicedee.services</groupId>
43             <artifactId>javax.inject</artifactId>
44             <optional>true</optional>
45         </dependency>
46         <dependency>
47             <groupId>jakarta.annotation</groupId>
48             <artifactId>jakarta.annotation-api</artifactId>
49             <scope>provided</scope>
50             <optional>true</optional>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>pcep-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>pcep-ietf-p2mp-te-lsp</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>pcep-ietf-stateful</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>pcep-segment-routing</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>pcep-topology-api</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>pcep-topology-spi</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>pcep-server-api</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>${project.groupId}</groupId>
82             <artifactId>graph-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>${project.groupId}</groupId>
86             <artifactId>programming-api</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>programming-spi</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>${project.groupId}</groupId>
94             <artifactId>concepts</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>${project.groupId}</groupId>
98             <artifactId>rsvp-api</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>${project.groupId}</groupId>
102             <artifactId>topology-api</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.mdsal</groupId>
106             <artifactId>mdsal-binding-api</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.slf4j</groupId>
110             <artifactId>slf4j-api</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>${project.groupId}</groupId>
114             <artifactId>pcep-spi</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>${project.groupId}</groupId>
118             <artifactId>util</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
122             <artifactId>rfc6991-ietf-inet-types</artifactId>
123         </dependency>
124         <dependency>
125             <groupId>org.opendaylight.mdsal</groupId>
126             <artifactId>mdsal-singleton-api</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.mdsal.model</groupId>
130             <artifactId>ietf-topology</artifactId>
131         </dependency>
132         <dependency>
133             <groupId>org.opendaylight.mdsal</groupId>
134             <artifactId>yang-binding</artifactId>
135         </dependency>
136         <dependency>
137             <groupId>org.opendaylight.mdsal</groupId>
138             <artifactId>mdsal-common-api</artifactId>
139         </dependency>
140         <dependency>
141             <groupId>org.opendaylight.yangtools</groupId>
142             <artifactId>yang-common</artifactId>
143         </dependency>
144         <dependency>
145             <groupId>org.opendaylight.yangtools</groupId>
146             <artifactId>concepts</artifactId>
147         </dependency>
148         <dependency>
149             <groupId>io.netty</groupId>
150             <artifactId>netty-common</artifactId>
151         </dependency>
152         <dependency>
153             <groupId>io.netty</groupId>
154             <artifactId>netty-transport</artifactId>
155         </dependency>
156         <dependency>
157             <groupId>io.netty</groupId>
158             <artifactId>netty-transport-classes-epoll</artifactId>
159         </dependency>
160         <dependency>
161             <groupId>org.checkerframework</groupId>
162             <artifactId>checker-qual</artifactId>
163             <scope>provided</scope>
164         </dependency>
165         <dependency>
166             <groupId>org.osgi</groupId>
167             <artifactId>org.osgi.service.component.annotations</artifactId>
168         </dependency>
169
170         <dependency>
171             <groupId>${project.groupId}</groupId>
172             <artifactId>pcep-impl</artifactId>
173         </dependency>
174
175         <!-- Test dependencies -->
176         <dependency>
177             <groupId>${project.groupId}</groupId>
178             <artifactId>testtool-util</artifactId>
179             <scope>test</scope>
180         </dependency>
181         <dependency>
182             <groupId>org.opendaylight.yangtools</groupId>
183             <artifactId>mockito-configuration</artifactId>
184         </dependency>
185         <dependency>
186             <groupId>${project.groupId}</groupId>
187             <artifactId>programming-impl</artifactId>
188             <scope>test</scope>
189         </dependency>
190         <dependency>
191             <groupId>${project.groupId}</groupId>
192             <artifactId>programming-impl</artifactId>
193             <type>test-jar</type>
194             <scope>test</scope>
195         </dependency>
196         <dependency>
197             <groupId>${project.groupId}</groupId>
198             <artifactId>pcep-impl</artifactId>
199             <type>test-jar</type>
200             <scope>test</scope>
201         </dependency>
202         <dependency>
203             <groupId>org.opendaylight.mdsal</groupId>
204             <artifactId>mdsal-binding-dom-adapter</artifactId>
205             <type>test-jar</type>
206             <scope>test</scope>
207         </dependency>
208         <dependency>
209             <groupId>org.opendaylight.mdsal</groupId>
210             <artifactId>mdsal-binding-test-utils</artifactId>
211             <scope>test</scope>
212         </dependency>
213         <dependency>
214             <groupId>org.opendaylight.mdsal</groupId>
215             <artifactId>mdsal-binding-dom-adapter</artifactId>
216             <scope>test</scope>
217         </dependency>
218         <dependency>
219             <groupId>${project.groupId}</groupId>
220             <artifactId>pcep-pcc-mock</artifactId>
221             <version>${project.version}</version>
222             <scope>test</scope>
223         </dependency>
224         <dependency>
225             <groupId>org.opendaylight.yangtools</groupId>
226             <artifactId>yang-test-util</artifactId>
227         </dependency>
228     </dependencies>
229
230     <build>
231         <plugins>
232             <plugin>
233                 <artifactId>maven-jar-plugin</artifactId>
234                 <executions>
235                     <execution>
236                         <goals>
237                             <goal>test-jar</goal>
238                         </goals>
239                     </execution>
240                 </executions>
241             </plugin>
242             <plugin>
243                 <artifactId>maven-source-plugin</artifactId>
244                 <executions>
245                     <execution>
246                         <goals>
247                             <goal>test-jar-no-fork</goal>
248                         </goals>
249                     </execution>
250                 </executions>
251             </plugin>
252         </plugins>
253     </build>
254
255     <scm>
256         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
257         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
258         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
259         <tag>HEAD</tag>
260     </scm>
261 </project>