Merge "Added tests for bgp-rib-impl-config modules, fixed validations and RIBImplModule."
[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.3.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                 </dependency>
32         </dependencies>
33
34         <distributionManagement>
35                 <site>
36                         <id>mockito-configuration</id>
37                         <name>MOCKITO-CONFIGURATION Module site</name>
38                         <url>${basedir}/target/site/${project.artifactId}</url>
39                 </site>
40         </distributionManagement>
41 </project>