Use readUnsignedByte instead of readByte and typecast.
[bgpcep.git] / pcep / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <modelVersion>4.0.0</modelVersion>
14     <scm>
15         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
16         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
17         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
18         <tag>HEAD</tag>
19     </scm>
20     <parent>
21         <groupId>org.opendaylight.bgpcep</groupId>
22         <artifactId>pcep-parent</artifactId>
23         <version>0.4.0-SNAPSHOT</version>
24     </parent>
25
26     <artifactId>pcep-topology-provider</artifactId>
27     <description>PCEP Topology Provider</description>
28     <packaging>bundle</packaging>
29     <name>${project.artifactId}</name>
30     <prerequisites>
31         <maven>3.0.4</maven>
32     </prerequisites>
33
34     <dependencies>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>pcep-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>pcep-ietf-stateful02</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>pcep-ietf-stateful07</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>pcep-topology-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>pcep-topology-spi</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>programming-api</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>programming-spi</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>rsvp-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>topology-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.controller</groupId>
73             <artifactId>sal-binding-api</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.controller</groupId>
77             <artifactId>sal-common-api</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.tcpmd5</groupId>
81             <artifactId>tcpmd5-netty</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.slf4j</groupId>
85             <artifactId>slf4j-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>pcep-spi</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>${project.groupId}</groupId>
93             <artifactId>util</artifactId>
94         </dependency>
95
96         <dependency>
97             <groupId>org.opendaylight.controller</groupId>
98             <artifactId>config-api</artifactId>
99         </dependency>
100
101         <dependency>
102             <groupId>org.opendaylight.tcpmd5</groupId>
103             <artifactId>tcpmd5-api</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.controller</groupId>
107             <artifactId>sal-binding-config</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.controller</groupId>
111             <artifactId>protocol-framework</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.yangtools.model</groupId>
115             <artifactId>ietf-inet-types</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.yangtools.model</groupId>
119             <artifactId>ietf-topology</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.yangtools</groupId>
123             <artifactId>yang-binding</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.yangtools</groupId>
127             <artifactId>yang-common</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>io.netty</groupId>
131             <artifactId>netty-common</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>io.netty</groupId>
135             <artifactId>netty-buffer</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>io.netty</groupId>
139             <artifactId>netty-transport</artifactId>
140         </dependency>
141
142         <dependency>
143             <groupId>${project.groupId}</groupId>
144             <artifactId>pcep-impl</artifactId>
145         </dependency>
146         <dependency>
147             <groupId>com.google.guava</groupId>
148             <artifactId>guava</artifactId>
149         </dependency>
150         <dependency>
151             <groupId>com.google.code.findbugs</groupId>
152             <artifactId>jsr305</artifactId>
153         </dependency>
154         <dependency>
155             <groupId>org.osgi</groupId>
156             <artifactId>org.osgi.core</artifactId>
157             <scope>provided</scope>
158         </dependency>
159
160         <!-- Test dependencies -->
161         <dependency>
162             <groupId>junit</groupId>
163             <artifactId>junit</artifactId>
164             <scope>test</scope>
165         </dependency>
166         <dependency>
167             <groupId>org.opendaylight.controller</groupId>
168             <artifactId>config-manager</artifactId>
169             <type>test-jar</type>
170         </dependency>
171         <dependency>
172             <groupId>org.opendaylight.controller</groupId>
173             <artifactId>config-manager</artifactId>
174             <scope>test</scope>
175         </dependency>
176         <dependency>
177             <groupId>org.opendaylight.controller</groupId>
178             <artifactId>config-util</artifactId>
179             <scope>test</scope>
180         </dependency>
181         <dependency>
182             <groupId>org.mockito</groupId>
183             <artifactId>mockito-core</artifactId>
184         </dependency>
185         <dependency>
186             <groupId>org.opendaylight.yangtools</groupId>
187             <artifactId>mockito-configuration</artifactId>
188             <scope>test</scope>
189         </dependency>
190         <dependency>
191             <groupId>org.opendaylight.controller</groupId>
192             <artifactId>sal-binding-broker-impl</artifactId>
193             <scope>test</scope>
194         </dependency>
195         <dependency>
196             <groupId>org.opendaylight.controller</groupId>
197             <artifactId>netty-timer-config</artifactId>
198             <scope>test</scope>
199         </dependency>
200         <dependency>
201             <groupId>org.opendaylight.controller</groupId>
202             <artifactId>netty-threadgroup-config</artifactId>
203             <scope>test</scope>
204         </dependency>
205         <dependency>
206             <groupId>${project.groupId}</groupId>
207             <artifactId>programming-impl</artifactId>
208             <scope>test</scope>
209         </dependency>
210         <dependency>
211             <groupId>${project.groupId}</groupId>
212             <artifactId>pcep-ietf-stateful02</artifactId>
213             <type>test-jar</type>
214             <scope>test</scope>
215         </dependency>
216         <dependency>
217             <groupId>${project.groupId}</groupId>
218             <artifactId>programming-impl</artifactId>
219             <type>test-jar</type>
220             <scope>test</scope>
221         </dependency>
222         <dependency>
223             <groupId>${project.groupId}</groupId>
224             <artifactId>pcep-impl</artifactId>
225             <type>test-jar</type>
226             <scope>test</scope>
227         </dependency>
228         <dependency>
229             <groupId>org.opendaylight.tcpmd5</groupId>
230             <artifactId>tcpmd5-jni</artifactId>
231             <scope>test</scope>
232         </dependency>
233         <dependency>
234             <groupId>org.opendaylight.tcpmd5</groupId>
235             <artifactId>tcpmd5-jni</artifactId>
236             <type>test-jar</type>
237             <scope>test</scope>
238         </dependency>
239         <dependency>
240             <groupId>org.opendaylight.controller</groupId>
241             <artifactId>sal-binding-broker-impl</artifactId>
242             <scope>test</scope>
243             <type>test-jar</type>
244         </dependency>
245         <dependency>
246             <groupId>${project.groupId}</groupId>
247             <artifactId>pcep-pcc-mock</artifactId>
248             <version>${project.version}</version>
249             <scope>test</scope>
250         </dependency>
251     </dependencies>
252
253     <build>
254         <plugins>
255             <plugin>
256                 <groupId>org.apache.maven.plugins</groupId>
257                 <artifactId>maven-jar-plugin</artifactId>
258                 <executions>
259                     <execution>
260                         <phase>package</phase>
261                         <goals>
262                             <goal>test-jar</goal>
263                         </goals>
264                     </execution>
265                 </executions>
266             </plugin>
267             <plugin>
268                 <groupId>org.opendaylight.yangtools</groupId>
269                 <artifactId>yang-maven-plugin</artifactId>
270             </plugin>
271            <plugin>
272                <groupId>org.apache.felix</groupId>
273                <artifactId>maven-bundle-plugin</artifactId>
274                <extensions>true</extensions>
275                <configuration>
276                    <instructions>
277                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
278                    </instructions>
279                </configuration>
280            </plugin>
281         </plugins>
282     </build>
283 </project>