Migration to use MD-SAL Project
[bgpcep.git] / bgp / bmp-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <scm>
7         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
8         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
9         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
10         <tag>HEAD</tag>
11     </scm>
12
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>bgp-parent</artifactId>
16         <version>0.5.0-SNAPSHOT</version>
17     </parent>
18
19     <artifactId>bgp-bmp-impl</artifactId>
20     <packaging>bundle</packaging>
21     <name>${project.artifactId}</name>
22     <prerequisites>
23         <maven>3.0.4</maven>
24     </prerequisites>
25
26     <dependencies>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>bgp-bmp-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.controller</groupId>
33             <artifactId>sal-broker-impl</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>bgp-bmp-spi</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.slf4j</groupId>
41             <artifactId>slf4j-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.slf4j</groupId>
45             <artifactId>slf4j-simple</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>util</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>bgp-parser-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>bgp-rib-api</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>bgp-rib-spi</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>bgp-inet</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.tcpmd5</groupId>
69             <artifactId>tcpmd5-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.tcpmd5</groupId>
73             <artifactId>tcpmd5-netty</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.mdsal</groupId>
77             <artifactId>yang-binding</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.yangtools</groupId>
81             <artifactId>concepts</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.yangtools</groupId>
85             <artifactId>yang-common</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.yangtools</groupId>
89             <artifactId>yang-data-api</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.yangtools</groupId>
93             <artifactId>yang-data-impl</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.controller</groupId>
97             <artifactId>sal-common-api</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.controller</groupId>
101             <artifactId>sal-core-api</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.mdsal</groupId>
105             <artifactId>mdsal-binding-generator-impl</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.mdsal</groupId>
109             <artifactId>mdsal-binding-dom-codec</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.controller</groupId>
113             <artifactId>sal-binding-config</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>io.netty</groupId>
117             <artifactId>netty-buffer</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>io.netty</groupId>
121             <artifactId>netty-codec</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>io.netty</groupId>
125             <artifactId>netty-common</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>io.netty</groupId>
129             <artifactId>netty-transport</artifactId>
130         </dependency>
131         <dependency>
132             <groupId>com.google.guava</groupId>
133             <artifactId>guava</artifactId>
134         </dependency>
135         <dependency>
136             <groupId>org.osgi</groupId>
137             <artifactId>org.osgi.core</artifactId>
138         </dependency>
139         <dependency>
140             <groupId>com.google.code.findbugs</groupId>
141             <artifactId>jsr305</artifactId>
142         </dependency>
143         <dependency>
144             <groupId>${project.groupId}</groupId>
145             <artifactId>bgp-parser-spi</artifactId>
146         </dependency>
147         <dependency>
148             <groupId>${project.groupId}</groupId>
149             <artifactId>bgp-concepts</artifactId>
150         </dependency>
151         <dependency>
152             <groupId>${project.groupId}</groupId>
153             <artifactId>concepts</artifactId>
154         </dependency>
155         <dependency>
156             <groupId>org.opendaylight.mdsal.model</groupId>
157             <artifactId>ietf-yang-types</artifactId>
158         </dependency>
159         <dependency>
160             <groupId>org.opendaylight.mdsal.model</groupId>
161             <artifactId>ietf-inet-types</artifactId>
162         </dependency>
163         <dependency>
164             <groupId>org.opendaylight.yangtools</groupId>
165             <artifactId>yang-model-api</artifactId>
166         </dependency>
167         <dependency>
168             <groupId>org.opendaylight.controller</groupId>
169             <artifactId>config-api</artifactId>
170         </dependency>
171         <dependency>
172             <groupId>org.opendaylight.controller</groupId>
173             <artifactId>netty-config-api</artifactId>
174         </dependency>
175         <dependency>
176             <groupId>org.javassist</groupId>
177             <artifactId>javassist</artifactId>
178         </dependency>
179
180         <!-- test dependencies -->
181         <dependency>
182             <groupId>junit</groupId>
183             <artifactId>junit</artifactId>
184         </dependency>
185         <dependency>
186             <groupId>org.mockito</groupId>
187             <artifactId>mockito-core</artifactId>
188         </dependency>
189         <dependency>
190             <groupId>org.opendaylight.yangtools</groupId>
191             <artifactId>mockito-configuration</artifactId>
192         </dependency>
193         <dependency>
194             <groupId>${project.groupId}</groupId>
195             <artifactId>bgp-parser-impl</artifactId>
196             <scope>test</scope>
197         </dependency>
198         <dependency>
199             <groupId>org.opendaylight.controller</groupId>
200             <artifactId>sal-binding-broker-impl</artifactId>
201             <scope>test</scope>
202             <type>test-jar</type>
203         </dependency>
204         <dependency>
205             <groupId>${project.groupId}</groupId>
206             <artifactId>bgp-rib-impl</artifactId>
207             <scope>test</scope>
208         </dependency>
209         <dependency>
210             <groupId>org.opendaylight.controller</groupId>
211             <artifactId>sal-binding-broker-impl</artifactId>
212             <scope>test</scope>
213         </dependency>
214         <dependency>
215             <groupId>org.opendaylight.controller</groupId>
216             <artifactId>config-manager</artifactId>
217             <type>test-jar</type>
218             <scope>test</scope>
219         </dependency>
220         <dependency>
221             <groupId>org.opendaylight.controller</groupId>
222             <artifactId>config-manager</artifactId>
223             <scope>test</scope>
224         </dependency>
225         <dependency>
226             <groupId>org.opendaylight.controller</groupId>
227             <artifactId>netty-event-executor-config</artifactId>
228             <scope>test</scope>
229         </dependency>
230         <dependency>
231             <groupId>org.opendaylight.controller</groupId>
232             <artifactId>netty-threadgroup-config</artifactId>
233             <scope>test</scope>
234         </dependency>
235         <dependency>
236             <groupId>org.opendaylight.controller</groupId>
237             <artifactId>sal-dom-broker-config</artifactId>
238             <scope>test</scope>
239         </dependency>
240     </dependencies>
241
242     <build>
243         <plugins>
244             <plugin>
245                 <groupId>org.apache.felix</groupId>
246                 <artifactId>maven-bundle-plugin</artifactId>
247                 <extensions>true</extensions>
248                 <configuration>
249                     <instructions>
250                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
251                         <Export-Package>
252                             org.opendaylight.protocol.bmp.impl.*,
253                         </Export-Package>
254                     </instructions>
255                 </configuration>
256             </plugin>
257             <plugin>
258                 <groupId>org.opendaylight.yangtools</groupId>
259                 <artifactId>yang-maven-plugin</artifactId>
260             </plugin>
261         </plugins>
262     </build>
263 </project>