BUG-4692: Migrate TCP-MD5 support in BMP package to netty's native-epoll
[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.6.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.mdsal</groupId>
69             <artifactId>yang-binding</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.yangtools</groupId>
73             <artifactId>concepts</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.yangtools</groupId>
77             <artifactId>yang-common</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.yangtools</groupId>
81             <artifactId>yang-data-api</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.yangtools</groupId>
85             <artifactId>yang-data-impl</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.controller</groupId>
89             <artifactId>sal-common-api</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.controller</groupId>
93             <artifactId>sal-core-api</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.mdsal</groupId>
97             <artifactId>mdsal-binding-generator-impl</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.mdsal</groupId>
101             <artifactId>mdsal-binding-dom-codec</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.controller</groupId>
105             <artifactId>sal-binding-config</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>io.netty</groupId>
109             <artifactId>netty-buffer</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>io.netty</groupId>
113             <artifactId>netty-codec</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>io.netty</groupId>
117             <artifactId>netty-common</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>io.netty</groupId>
121             <artifactId>netty-transport</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>io.netty</groupId>
125             <artifactId>netty-transport-native-epoll</artifactId>
126             <classifier>${os.detected.classifier}</classifier>
127         </dependency>
128         <dependency>
129             <groupId>io.netty</groupId>
130             <artifactId>netty-handler</artifactId>
131         </dependency>
132         <dependency>
133             <groupId>com.google.guava</groupId>
134             <artifactId>guava</artifactId>
135         </dependency>
136         <dependency>
137             <groupId>org.osgi</groupId>
138             <artifactId>org.osgi.core</artifactId>
139         </dependency>
140         <dependency>
141             <groupId>com.google.code.findbugs</groupId>
142             <artifactId>jsr305</artifactId>
143         </dependency>
144         <dependency>
145             <groupId>${project.groupId}</groupId>
146             <artifactId>bgp-parser-spi</artifactId>
147         </dependency>
148         <dependency>
149             <groupId>${project.groupId}</groupId>
150             <artifactId>bgp-concepts</artifactId>
151         </dependency>
152         <dependency>
153             <groupId>${project.groupId}</groupId>
154             <artifactId>concepts</artifactId>
155         </dependency>
156         <dependency>
157             <groupId>org.opendaylight.mdsal.model</groupId>
158             <artifactId>ietf-yang-types-20130715</artifactId>
159         </dependency>
160         <dependency>
161             <groupId>org.opendaylight.mdsal.model</groupId>
162             <artifactId>ietf-inet-types-2013-07-15</artifactId>
163         </dependency>
164         <dependency>
165             <groupId>org.opendaylight.yangtools</groupId>
166             <artifactId>yang-model-api</artifactId>
167         </dependency>
168         <dependency>
169             <groupId>org.opendaylight.controller</groupId>
170             <artifactId>config-api</artifactId>
171         </dependency>
172         <dependency>
173             <groupId>org.opendaylight.controller</groupId>
174             <artifactId>netty-config-api</artifactId>
175         </dependency>
176         <dependency>
177             <groupId>org.javassist</groupId>
178             <artifactId>javassist</artifactId>
179         </dependency>
180
181         <!-- test dependencies -->
182         <dependency>
183             <groupId>junit</groupId>
184             <artifactId>junit</artifactId>
185         </dependency>
186         <dependency>
187             <groupId>org.mockito</groupId>
188             <artifactId>mockito-core</artifactId>
189         </dependency>
190         <dependency>
191             <groupId>org.opendaylight.yangtools</groupId>
192             <artifactId>mockito-configuration</artifactId>
193         </dependency>
194         <dependency>
195             <groupId>${project.groupId}</groupId>
196             <artifactId>bgp-parser-impl</artifactId>
197             <scope>test</scope>
198         </dependency>
199         <dependency>
200             <groupId>org.opendaylight.controller</groupId>
201             <artifactId>sal-binding-broker-impl</artifactId>
202             <scope>test</scope>
203             <type>test-jar</type>
204         </dependency>
205         <dependency>
206             <groupId>${project.groupId}</groupId>
207             <artifactId>bgp-rib-impl</artifactId>
208             <scope>test</scope>
209         </dependency>
210         <dependency>
211             <groupId>org.opendaylight.controller</groupId>
212             <artifactId>sal-binding-broker-impl</artifactId>
213             <scope>test</scope>
214         </dependency>
215         <dependency>
216             <groupId>org.opendaylight.controller</groupId>
217             <artifactId>config-manager</artifactId>
218             <type>test-jar</type>
219             <scope>test</scope>
220         </dependency>
221         <dependency>
222             <groupId>org.opendaylight.controller</groupId>
223             <artifactId>config-manager</artifactId>
224             <scope>test</scope>
225         </dependency>
226         <dependency>
227             <groupId>org.opendaylight.controller</groupId>
228             <artifactId>netty-event-executor-config</artifactId>
229             <scope>test</scope>
230         </dependency>
231         <dependency>
232             <groupId>org.opendaylight.controller</groupId>
233             <artifactId>netty-threadgroup-config</artifactId>
234             <scope>test</scope>
235         </dependency>
236         <dependency>
237             <groupId>org.opendaylight.controller</groupId>
238             <artifactId>sal-dom-broker-config</artifactId>
239             <scope>test</scope>
240         </dependency>
241     </dependencies>
242
243     <build>
244         <plugins>
245             <plugin>
246                 <groupId>org.apache.felix</groupId>
247                 <artifactId>maven-bundle-plugin</artifactId>
248                 <extensions>true</extensions>
249                 <configuration>
250                     <instructions>
251                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
252                         <Export-Package>
253                             org.opendaylight.protocol.bmp.impl.*,
254                         </Export-Package>
255                     </instructions>
256                 </configuration>
257             </plugin>
258             <plugin>
259                 <groupId>org.opendaylight.yangtools</groupId>
260                 <artifactId>yang-maven-plugin</artifactId>
261             </plugin>
262         </plugins>
263     </build>
264
265   <!--
266       Maven Site Configuration
267
268       The following configuration is necessary for maven-site-plugin to
269       correctly identify the correct deployment path for OpenDaylight Maven
270       sites.
271   -->
272   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
273
274   <distributionManagement>
275     <site>
276       <id>opendaylight-site</id>
277       <url>${nexus.site.url}/${project.artifactId}/</url>
278     </site>
279   </distributionManagement>
280 </project>