Repair bgp-rib-impl-config to work with MD5 wiring
[bgpcep.git] / bgp / rib-impl-config / 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"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14     <modelVersion>4.0.0</modelVersion>
15     <scm>
16         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
17         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
18         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
19         <tag>HEAD</tag>
20     </scm>
21     <parent>
22         <groupId>org.opendaylight.bgpcep</groupId>
23         <artifactId>bgp-parent</artifactId>
24         <version>0.3.1-SNAPSHOT</version>
25     </parent>
26
27     <artifactId>bgp-rib-impl-config</artifactId>
28     <description>BGP RIB implementation configuration</description>
29     <packaging>bundle</packaging>
30     <name>${project.artifactId}</name>
31     <prerequisites>
32         <maven>3.0.4</maven>
33     </prerequisites>
34
35     <dependencies>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>bgp-linkstate</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>bgp-rib-api</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>bgp-rib-api-config</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>bgp-rib-spi-config</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>bgp-parser-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>bgp-parser-spi-config</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>bgp-rib-impl</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>bgp-parser-impl</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>tcpmd5-api-cfg</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>tcpmd5-netty</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>tcpmd5-netty-cfg</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.controller</groupId>
82             <artifactId>config-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.controller</groupId>
86             <artifactId>sal-binding-config</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.controller</groupId>
90             <artifactId>netty-config-api</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.controller</groupId>
94             <artifactId>netty-timer-config</artifactId>
95         </dependency>
96
97         <!--test dependencies -->
98         <dependency>
99             <groupId>junit</groupId>
100             <artifactId>junit</artifactId>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.controller</groupId>
105             <artifactId>config-manager</artifactId>
106             <type>test-jar</type>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.controller</groupId>
111             <artifactId>config-manager</artifactId>
112             <scope>test</scope>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.controller</groupId>
116             <artifactId>config-util</artifactId>
117             <scope>test</scope>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.yangtools</groupId>
121             <artifactId>mockito-configuration</artifactId>
122             <scope>test</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.opendaylight.controller</groupId>
126             <artifactId>netty-event-executor-config</artifactId>
127             <scope>test</scope>
128         </dependency>
129         <dependency>
130             <groupId>org.opendaylight.controller</groupId>
131             <artifactId>netty-threadgroup-config</artifactId>
132             <scope>test</scope>
133         </dependency>
134         <dependency>
135             <groupId>org.opendaylight.controller</groupId>
136             <artifactId>sal-binding-broker-impl</artifactId>
137             <scope>test</scope>
138         </dependency>
139         <dependency>
140             <groupId>org.opendaylight.controller</groupId>
141             <artifactId>protocol-framework</artifactId>
142             <type>test-jar</type>
143             <scope>test</scope>
144         </dependency>
145         <dependency>
146             <groupId>${project.groupId}</groupId>
147             <artifactId>tcpmd5-jni-cfg</artifactId>
148             <scope>test</scope>
149         </dependency>
150         <dependency>
151             <groupId>${project.groupId}</groupId>
152             <artifactId>tcpmd5-jni</artifactId>
153             <type>test-jar</type>
154             <scope>test</scope>
155         </dependency>
156     </dependencies>
157
158     <build>
159         <plugins>
160             <plugin>
161                 <groupId>org.apache.maven.plugins</groupId>
162                 <artifactId>maven-jar-plugin</artifactId>
163                 <executions>
164                     <execution>
165                         <phase>package</phase>
166                         <goals>
167                             <goal>test-jar</goal>
168                         </goals>
169                     </execution>
170                 </executions>
171             </plugin>
172             <plugin>
173                 <groupId>org.opendaylight.yangtools</groupId>
174                 <artifactId>yang-maven-plugin</artifactId>
175             </plugin>
176             <plugin>
177                 <groupId>org.apache.felix</groupId>
178                 <artifactId>maven-bundle-plugin</artifactId>
179                 <extensions>true</extensions>
180                 <configuration>
181                     <instructions>
182                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
183                     </instructions>
184                 </configuration>
185             </plugin>
186         </plugins>
187     </build>
188 </project>