d6e95ee11e03e05d87153232a0468b2da6928b44
[bgpcep.git] / bgp / rib-impl / 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>bgp-parent</artifactId>
23         <version>0.3.1-SNAPSHOT</version>
24     </parent>
25
26     <artifactId>bgp-rib-impl</artifactId>
27     <description>BGP RIB implementation</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>bgp-concepts</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>bgp-parser-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>bgp-parser-spi</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>bgp-rib-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>bgp-rib-spi</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.tcpmd5</groupId>
57             <artifactId>tcpmd5-api</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.tcpmd5</groupId>
61             <artifactId>tcpmd5-netty</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>com.google.code.findbugs</groupId>
65             <artifactId>jsr305</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>com.google.guava</groupId>
69             <artifactId>guava</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>io.netty</groupId>
73             <artifactId>netty-codec</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>io.netty</groupId>
77             <artifactId>netty-common</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>io.netty</groupId>
81             <artifactId>netty-transport</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.slf4j</groupId>
85             <artifactId>slf4j-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.controller</groupId>
89             <artifactId>sal-binding-api</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.controller</groupId>
93             <artifactId>protocol-framework</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.yangtools</groupId>
97             <artifactId>yang-binding</artifactId>
98         </dependency>
99
100         <dependency>
101             <groupId>${project.groupId}</groupId>
102             <artifactId>bgp-linkstate</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>${project.groupId}</groupId>
106             <artifactId>bgp-parser-impl</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.controller</groupId>
110             <artifactId>config-api</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.controller</groupId>
114             <artifactId>sal-binding-config</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.controller</groupId>
118             <artifactId>netty-config-api</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.controller</groupId>
122             <artifactId>netty-timer-config</artifactId>
123         </dependency>
124
125         <!-- Testing dependencies -->
126         <dependency>
127             <groupId>org.mockito</groupId>
128             <artifactId>mockito-core</artifactId>
129         </dependency>
130         <dependency>
131             <groupId>org.opendaylight.yangtools</groupId>
132             <artifactId>mockito-configuration</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>junit</groupId>
136             <artifactId>junit</artifactId>
137         </dependency>
138
139         <dependency>
140             <groupId>org.opendaylight.controller</groupId>
141             <artifactId>config-manager</artifactId>
142             <type>test-jar</type>
143             <scope>test</scope>
144         </dependency>
145         <dependency>
146             <groupId>org.opendaylight.controller</groupId>
147             <artifactId>config-manager</artifactId>
148             <scope>test</scope>
149         </dependency>
150         <dependency>
151             <groupId>org.opendaylight.controller</groupId>
152             <artifactId>config-util</artifactId>
153             <scope>test</scope>
154         </dependency>
155         <dependency>
156             <groupId>org.opendaylight.controller</groupId>
157             <artifactId>netty-event-executor-config</artifactId>
158             <scope>test</scope>
159         </dependency>
160         <dependency>
161             <groupId>org.opendaylight.controller</groupId>
162             <artifactId>netty-threadgroup-config</artifactId>
163             <scope>test</scope>
164         </dependency>
165         <dependency>
166             <groupId>org.opendaylight.controller</groupId>
167             <artifactId>sal-binding-broker-impl</artifactId>
168             <scope>test</scope>
169         </dependency>
170         <dependency>
171             <groupId>org.opendaylight.controller</groupId>
172             <artifactId>protocol-framework</artifactId>
173             <type>test-jar</type>
174             <scope>test</scope>
175         </dependency>
176         <dependency>
177             <groupId>org.opendaylight.tcpmd5</groupId>
178             <artifactId>tcpmd5-jni</artifactId>
179             <scope>test</scope>
180         </dependency>
181         <dependency>
182             <groupId>org.opendaylight.tcpmd5</groupId>
183             <artifactId>tcpmd5-jni</artifactId>
184             <type>test-jar</type>
185             <scope>test</scope>
186         </dependency>
187     </dependencies>
188
189     <build>
190         <plugins>
191             <plugin>
192                 <groupId>org.apache.felix</groupId>
193                 <artifactId>maven-bundle-plugin</artifactId>
194                 <extensions>true</extensions>
195                 <configuration>
196                     <instructions>
197                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
198                         <Export-Package>
199                             org.opendaylight.protocol.bgp.rib.impl.*,
200                             org.opendaylight.controller.config.yang.bgp.rib.impl
201                         </Export-Package>
202                     </instructions>
203                 </configuration>
204             </plugin>
205             <plugin>
206                 <groupId>org.apache.maven.plugins</groupId>
207                 <artifactId>maven-jar-plugin</artifactId>
208                 <executions>
209                     <execution>
210                         <phase>package</phase>
211                         <goals>
212                             <goal>test-jar</goal>
213                         </goals>
214                     </execution>
215                 </executions>
216             </plugin>
217             <plugin>
218                 <groupId>org.opendaylight.yangtools</groupId>
219                 <artifactId>yang-maven-plugin</artifactId>
220             </plugin>
221         </plugins>
222     </build>
223 </project>