Fix dependency deficiencies
[bgpcep.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.bgpcep</groupId>
8                 <artifactId>protocol-parent</artifactId>
9                 <version>0.1.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>mockito-configuration</artifactId>
14         <description>Default mockito configuration</description>
15         <packaging>jar</packaging> <!-- not needed in OSGi -->
16     <name>${project.artifactId}</name>
17         <prerequisites>
18                 <maven>3.0.4</maven>
19         </prerequisites>
20
21         <dependencies>
22                 <!-- all those dependencies will be in test scope as mockito-configuration should be referenced as test scope dependency -->
23                 <dependency>
24                         <groupId>org.mockito</groupId>
25                         <artifactId>mockito-core</artifactId>
26             <version>${mockito.version}</version>
27                 </dependency>
28                 <dependency>
29                         <groupId>junit</groupId>
30                         <artifactId>junit</artifactId>
31                         <version>${junit.version}</version>
32                 </dependency>
33         </dependencies>
34
35         <distributionManagement>
36                 <site>
37                         <id>mockito-configuration</id>
38                         <name>MOCKITO-CONFIGURATION Module site</name>
39                         <url>${basedir}/target/site/${project.artifactId}</url>
40                 </site>
41         </distributionManagement>
42 </project>