Merge "Read-only transactions were not being closed"
[bgpcep.git] / pcep / tunnel-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-tunnel-provider</artifactId>
27     <description>PCEP Tunnel 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>concepts</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>pcep-topology-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>pcep-topology-spi</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>pcep-ietf-stateful02</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>pcep-ietf-stateful07</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>pcep-impl</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>pcep-tunnel-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>programming-tunnel-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>pcep-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>pcep-spi</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>rsvp-api</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>programming-topology-api</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>${project.groupId}</groupId>
85             <artifactId>programming-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>programming-spi</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>${project.groupId}</groupId>
93             <artifactId>topology-api</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>${project.groupId}</groupId>
97             <artifactId>topology-tunnel-api</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.controller</groupId>
101             <artifactId>sal-binding-api</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.controller</groupId>
105             <artifactId>sal-common-api</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.slf4j</groupId>
109             <artifactId>slf4j-api</artifactId>
110         </dependency>
111
112         <dependency>
113             <groupId>org.opendaylight.yangtools</groupId>
114             <artifactId>yang-binding</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.yangtools</groupId>
118             <artifactId>yang-common</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.yangtools</groupId>
122             <artifactId>concepts</artifactId>
123         </dependency>
124         <dependency>
125             <groupId>org.opendaylight.yangtools.model</groupId>
126             <artifactId>ietf-inet-types</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.yangtools.model</groupId>
130             <artifactId>ietf-topology</artifactId>
131         </dependency>
132         <dependency>
133             <groupId>org.opendaylight.yangtools.model</groupId>
134             <artifactId>ietf-topology-l3-unicast-igp</artifactId>
135         </dependency>
136
137         <dependency>
138             <groupId>org.opendaylight.controller</groupId>
139             <artifactId>config-api</artifactId>
140         </dependency>
141         <dependency>
142             <groupId>${project.groupId}</groupId>
143             <artifactId>pcep-topology-provider</artifactId>
144         </dependency>
145         <dependency>
146             <groupId>org.opendaylight.controller</groupId>
147             <artifactId>sal-binding-config</artifactId>
148         </dependency>
149         <dependency>
150             <groupId>com.google.guava</groupId>
151             <artifactId>guava</artifactId>
152         </dependency>
153         <dependency>
154             <groupId>org.osgi</groupId>
155             <artifactId>org.osgi.core</artifactId>
156             <scope>provided</scope>
157         </dependency>
158
159         <!-- Testing dependencies -->
160         <dependency>
161             <groupId>junit</groupId>
162             <artifactId>junit</artifactId>
163         </dependency>
164         <dependency>
165             <groupId>org.opendaylight.controller</groupId>
166             <artifactId>config-manager</artifactId>
167             <type>test-jar</type>
168         </dependency>
169         <dependency>
170             <groupId>org.opendaylight.controller</groupId>
171             <artifactId>config-manager</artifactId>
172         </dependency>
173         <dependency>
174             <groupId>org.opendaylight.controller</groupId>
175             <artifactId>config-util</artifactId>
176         </dependency>
177         <dependency>
178             <groupId>org.opendaylight.yangtools</groupId>
179             <artifactId>mockito-configuration</artifactId>
180         </dependency>
181         <dependency>
182             <groupId>org.opendaylight.controller</groupId>
183             <artifactId>netty-timer-config</artifactId>
184             <scope>test</scope>
185         </dependency>
186         <dependency>
187             <groupId>org.opendaylight.controller</groupId>
188             <artifactId>netty-threadgroup-config</artifactId>
189         </dependency>
190         <dependency>
191             <groupId>${project.groupId}</groupId>
192             <artifactId>programming-impl</artifactId>
193             <type>test-jar</type>
194         </dependency>
195         <dependency>
196             <groupId>${project.groupId}</groupId>
197             <artifactId>programming-impl</artifactId>
198             <scope>test</scope>
199         </dependency>
200         <dependency>
201             <groupId>${project.groupId}</groupId>
202             <artifactId>pcep-ietf-stateful02</artifactId>
203             <type>test-jar</type>
204         </dependency>
205         <dependency>
206             <groupId>${project.groupId}</groupId>
207             <artifactId>pcep-topology-provider</artifactId>
208             <type>test-jar</type>
209         </dependency>
210         <dependency>
211             <groupId>${project.groupId}</groupId>
212             <artifactId>pcep-impl</artifactId>
213             <type>test-jar</type>
214         </dependency>
215         <dependency>
216             <groupId>org.opendaylight.controller</groupId>
217             <artifactId>sal-binding-broker-impl</artifactId>
218             <scope>test</scope>
219         </dependency>
220         <dependency>
221             <groupId>org.opendaylight.controller</groupId>
222             <artifactId>sal-binding-broker-impl</artifactId>
223             <scope>test</scope>
224             <type>test-jar</type>
225         </dependency>
226         <dependency>
227             <groupId>org.mockito</groupId>
228             <artifactId>mockito-core</artifactId>
229         </dependency>
230     </dependencies>
231
232     <build>
233         <plugins>
234            <plugin>
235                <groupId>org.apache.felix</groupId>
236                <artifactId>maven-bundle-plugin</artifactId>
237                <extensions>true</extensions>
238                <configuration>
239                    <instructions>
240                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
241                    </instructions>
242                </configuration>
243            </plugin>
244            <plugin>
245                 <groupId>org.opendaylight.yangtools</groupId>
246                 <artifactId>yang-maven-plugin</artifactId>
247             </plugin>
248         </plugins>
249     </build>
250 </project>