Replace mockito-all by mockito-core (see Bug 7662)
[openflowplugin.git] / openflowplugin-common / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.4.0-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <artifactId>openflowplugin-common</artifactId>
12     <packaging>bundle</packaging>
13
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.apache.felix</groupId>
18                 <artifactId>maven-bundle-plugin</artifactId>
19             </plugin>
20         </plugins>
21     </build>
22     <dependencies>
23         <dependency>
24             <groupId>com.google.guava</groupId>
25             <artifactId>guava</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.slf4j</groupId>
29             <artifactId>slf4j-api</artifactId>
30         </dependency>
31
32         <dependency>
33             <groupId>junit</groupId>
34             <artifactId>junit</artifactId>
35             <scope>test</scope>
36         </dependency>
37         <dependency>
38             <groupId>org.mockito</groupId>
39             <artifactId>mockito-core</artifactId>
40             <scope>test</scope>
41         </dependency>
42         <dependency>
43             <groupId>org.slf4j</groupId>
44             <artifactId>slf4j-log4j12</artifactId>
45             <scope>test</scope>
46         </dependency>
47     </dependencies>
48 </project>
49