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