Replace mockito-all by mockito-core (see Bug 7662)
[controller.git] / opendaylight / md-sal / sal-binding-it / 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.controller</groupId>
6     <artifactId>mdsal-it-parent</artifactId>
7     <version>1.5.0-SNAPSHOT</version>
8     <relativePath>../mdsal-it-parent</relativePath>
9   </parent>
10   <artifactId>sal-binding-it</artifactId>
11
12   <dependencies>
13     <dependency>
14       <groupId>org.opendaylight.controller</groupId>
15       <artifactId>features-mdsal</artifactId>
16       <classifier>features</classifier>
17       <type>xml</type>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>sal-test-model</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.ops4j.pax.exam</groupId>
25       <artifactId>pax-exam</artifactId>
26       <!-- Compile scope here is intentional, it is used in TestHelper
27                 class which could be downloaded via nexus and reused in other integration
28                 tests. -->
29       <scope>compile</scope>
30     </dependency>
31   </dependencies>
32
33   <build>
34     <plugins>
35       <plugin>
36         <groupId>org.apache.maven.plugins</groupId>
37         <artifactId>maven-dependency-plugin</artifactId>
38         <executions>
39           <execution>
40            <id>unpack-karaf-resources</id>
41            <goals>
42             <goal>unpack-dependencies</goal>
43            </goals>
44            <phase>process-test-resources</phase>
45            <configuration>
46             <outputDirectory>${project.build.directory}/test-classes</outputDirectory>
47             <groupId>org.opendaylight.controller</groupId>
48             <includeArtifactIds>mockito-core,objenesis,config-it-base,mdsal-it-base</includeArtifactIds>
49             <excludes>META-INF\/**</excludes>
50             <ignorePermissions>false</ignorePermissions>
51            </configuration>
52           </execution>
53          </executions>
54       </plugin>
55     </plugins>
56   </build>
57   <scm>
58     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
59     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
60     <tag>HEAD</tag>
61     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
62   </scm>
63 </project>