Eradicate mockito-configuration references
[bgpcep.git] / bgp / parser-spi-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-parser-spi-config</artifactId>
20     <description>BGP RIB API CONFIG</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>org.opendaylight.controller</groupId>
30             <artifactId>config-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>bgp-parser-spi</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.slf4j</groupId>
38             <artifactId>slf4j-api</artifactId>
39         </dependency>
40         <!--test dependencies -->
41         <dependency>
42             <groupId>org.opendaylight.controller</groupId>
43             <artifactId>config-manager</artifactId>
44             <version>${controller.config.version}</version>
45             <scope>test</scope>
46             <type>test-jar</type>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.yangtools</groupId>
50             <artifactId>mockito-configuration</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>junit</groupId>
54             <artifactId>junit</artifactId>
55             <scope>test</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>config-manager</artifactId>
60             <version>${controller.config.version}</version>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.controller</groupId>
65             <artifactId>config-util</artifactId>
66             <version>${controller.config.version}</version>
67             <scope>test</scope>
68         </dependency>
69     </dependencies>
70
71     <build>
72         <plugins>
73             <plugin>
74                 <groupId>org.opendaylight.yangtools</groupId>
75                 <artifactId>yang-maven-plugin</artifactId>
76             </plugin>
77             <plugin>
78                 <groupId>org.apache.felix</groupId>
79                 <artifactId>maven-bundle-plugin</artifactId>
80                 <extensions>true</extensions>
81                 <configuration>
82                     <instructions>
83                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
84                     </instructions>
85                 </configuration>
86             </plugin>
87         </plugins>
88     </build>
89 </project>