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