Make unittest.tools a test dependency
[lispflowmapping.git] / mappingservice / 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
5   <parent>
6     <groupId>org.opendaylight.odlparent</groupId>
7     <artifactId>odlparent</artifactId>
8     <version>1.7.0-SNAPSHOT</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.lispflowmapping</groupId>
13   <artifactId>mappingservice-parent</artifactId>
14   <version>1.4.0-SNAPSHOT</version>
15   <packaging>pom</packaging>
16   <name>Mapping Service Parent POM</name>
17
18   <properties>
19     <pmd.cpd.fail>true</pmd.cpd.fail>
20   </properties>
21
22   <modules>
23     <module>lisp-proto</module>
24     <module>api</module>
25     <module>clustering</module>
26     <module>inmemorydb</module>
27     <module>dsbackend</module>
28     <module>mapcache</module>
29     <module>implementation</module>
30     <module>southbound</module>
31     <module>neutron</module>
32     <module>shell</module>
33   </modules>
34
35   <dependencyManagement>
36     <dependencies>
37       <dependency>
38         <groupId>org.opendaylight.mdsal</groupId>
39         <artifactId>mdsal-artifacts</artifactId>
40         <version>2.1.0-SNAPSHOT</version>
41         <type>pom</type>
42         <scope>import</scope>
43       </dependency>
44       <dependency>
45         <groupId>org.opendaylight.mdsal.model</groupId>
46         <artifactId>mdsal-model-artifacts</artifactId>
47         <version>0.9.0-SNAPSHOT</version>
48         <type>pom</type>
49         <scope>import</scope>
50       </dependency>
51       <dependency>
52         <groupId>${project.groupId}</groupId>
53         <artifactId>lispflowmapping-artifacts</artifactId>
54         <version>${project.version}</version>
55         <type>pom</type>
56         <scope>import</scope>
57       </dependency>
58       <dependency>
59         <groupId>${project.groupId}</groupId>
60         <artifactId>common.unittest.tools</artifactId>
61         <version>${project.version}</version>
62         <scope>test</scope>
63       </dependency>
64       <dependency>
65         <groupId>junit-addons</groupId>
66         <artifactId>junit-addons</artifactId>
67         <version>1.4</version>
68         <scope>test</scope>
69       </dependency>
70     </dependencies>
71   </dependencyManagement>
72
73   <dependencies>
74     <dependency>
75       <groupId>org.mockito</groupId>
76       <artifactId>mockito-core</artifactId>
77       <scope>test</scope>
78     </dependency>
79   </dependencies>
80
81   <build>
82     <plugins>
83       <plugin>
84         <groupId>org.apache.felix</groupId>
85         <artifactId>maven-bundle-plugin</artifactId>
86       </plugin>
87     </plugins>
88   </build>
89
90   <!--
91       Maven Site Configuration
92
93       The following configuration is necessary for maven-site-plugin to
94       correctly identify the correct deployment path for OpenDaylight Maven
95       sites.
96   -->
97   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
98
99   <distributionManagement>
100     <site>
101       <id>opendaylight-site</id>
102       <url>${nexus.site.url}/${project.artifactId}/</url>
103     </site>
104   </distributionManagement>
105
106 </project>