Eradicate mockito-configuration references
[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 <project xmlns="http://maven.apache.org/POM/4.0.0" 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
6     <modelVersion>4.0.0</modelVersion>
7     <scm>
8         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
9         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
10         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
11         <tag>HEAD</tag>
12     </scm>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>bgp-parent</artifactId>
16         <version>0.3.0-SNAPSHOT</version>
17     </parent>
18
19     <artifactId>bgp-rib-impl</artifactId>
20     <description>BGP RIB implementation</description>
21     <packaging>bundle</packaging>
22     <name>${project.artifactId}</name>
23     <prerequisites>
24         <maven>3.0.4</maven>
25     </prerequisites>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>concepts</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>util</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>bgp-concepts</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>bgp-parser-api</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>bgp-parser-spi</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>bgp-rib-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>bgp-rib-spi</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>bgp-util</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>com.google.code.findbugs</groupId>
62             <artifactId>jsr305</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>com.google.guava</groupId>
66             <artifactId>guava</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>io.netty</groupId>
70             <artifactId>netty-codec</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>io.netty</groupId>
74             <artifactId>netty-common</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>io.netty</groupId>
78             <artifactId>netty-transport</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.slf4j</groupId>
82             <artifactId>slf4j-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.controller</groupId>
86             <artifactId>sal-binding-api</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.controller</groupId>
90             <artifactId>protocol-framework</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.yangtools</groupId>
94             <artifactId>yang-binding</artifactId>
95         </dependency>
96
97         <!-- Testing dependencies -->
98         <dependency>
99             <groupId>org.mockito</groupId>
100             <artifactId>mockito-core</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.yangtools</groupId>
104             <artifactId>mockito-configuration</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>${project.groupId}</groupId>
108             <artifactId>bgp-parser-impl</artifactId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>junit</groupId>
113             <artifactId>junit</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>${project.groupId}</groupId>
117             <artifactId>bgp-linkstate</artifactId>
118             <scope>test</scope>
119         </dependency>
120     </dependencies>
121
122     <build>
123         <plugins>
124             <plugin>
125                 <groupId>org.apache.felix</groupId>
126                 <artifactId>maven-bundle-plugin</artifactId>
127                 <extensions>true</extensions>
128                 <configuration>
129                     <instructions>
130                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
131                         <Export-Package>
132                             org.opendaylight.protocol.bgp.rib.impl.*,
133                         </Export-Package>
134                     </instructions>
135                 </configuration>
136             </plugin>
137         </plugins>
138     </build>
139 </project>