Eradicate mockito-configuration references
[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 <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-config</artifactId>
20     <description>BGP RIB implementation configuration</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>bgp-linkstate</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>bgp-rib-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>bgp-rib-api-config</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>bgp-rib-spi-config</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>bgp-parser-api</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>bgp-parser-spi-config</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>bgp-rib-impl</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>bgp-parser-impl</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>bgp-update-api-config</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.controller</groupId>
66             <artifactId>config-api</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.controller</groupId>
70             <artifactId>sal-binding-config</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.controller</groupId>
74             <artifactId>netty-config-api</artifactId>
75         </dependency>
76
77         <!--test dependencies -->
78         <dependency>
79             <groupId>junit</groupId>
80             <artifactId>junit</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>config-manager</artifactId>
86             <version>${controller.config.version}</version>
87             <scope>test</scope>
88             <type>test-jar</type>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.controller</groupId>
92             <artifactId>yang-store-impl</artifactId>
93             <version>${controller.config.version}</version>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.controller</groupId>
98             <artifactId>config-manager</artifactId>
99             <version>${controller.config.version}</version>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.controller</groupId>
104             <artifactId>config-util</artifactId>
105             <version>${controller.config.version}</version>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.yangtools</groupId>
110             <artifactId>mockito-configuration</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.controller</groupId>
114             <artifactId>netty-event-executor-config</artifactId>
115             <version>${controller.config.version}</version>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.controller</groupId>
120             <artifactId>netty-threadgroup-config</artifactId>
121             <version>${controller.config.version}</version>
122             <scope>test</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.opendaylight.controller</groupId>
126             <artifactId>sal-binding-broker-impl</artifactId>
127             <scope>test</scope>
128         </dependency>
129     </dependencies>
130
131     <build>
132         <plugins>
133             <plugin>
134                 <groupId>org.opendaylight.yangtools</groupId>
135                 <artifactId>yang-maven-plugin</artifactId>
136             </plugin>
137             <plugin>
138                 <groupId>org.apache.felix</groupId>
139                 <artifactId>maven-bundle-plugin</artifactId>
140                 <extensions>true</extensions>
141                 <configuration>
142                     <instructions>
143                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
144                     </instructions>
145                 </configuration>
146             </plugin>
147         </plugins>
148     </build>
149 </project>