Introduce mockito-configuration from bgpcep
[yangtools.git] / mockito-configuration / 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     <parent>
7         <groupId>org.opendaylight.yangtools</groupId>
8         <artifactId>yangtools</artifactId>
9         <version>0.1.1-SNAPSHOT</version>
10     </parent>
11
12     <!-- FIXME: remove this once parent is bumped -->
13     <version>0.6.0-SNAPSHOT</version>
14
15         <modelVersion>4.0.0</modelVersion>
16         <artifactId>mockito-configuration</artifactId>
17         <description>Default mockito configuration</description>
18         <packaging>jar</packaging><!-- not needed in OSGi -->
19     <name>${project.artifactId}</name>
20         <prerequisites>
21                 <maven>3.0.4</maven>
22         </prerequisites>
23
24         <dependencies>
25                 <!-- all those dependencies will be in test scope as mockito-configuration should be referenced as test scope dependency -->
26                 <dependency>
27                         <groupId>org.mockito</groupId>
28             <artifactId>mockito-core</artifactId>
29             <scope>compile</scope>
30                 </dependency>
31                 <dependency>
32                         <groupId>junit</groupId>
33                         <artifactId>junit</artifactId>
34                 </dependency>
35         </dependencies>
36 </project>