Clustering - common infrastructure.
[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.controller</groupId>
7     <artifactId>config-parent</artifactId>
8     <version>0.5.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   <modules>
19     <module>lisp-proto</module>
20     <module>api</module>
21     <module>clustering</module>
22     <module>inmemorydb</module>
23     <module>dsbackend</module>
24     <module>mapcache</module>
25     <module>implementation</module>
26     <module>southbound</module>
27     <module>neutron</module>
28     <module>shell</module>
29   </modules>
30
31   <dependencyManagement>
32     <dependencies>
33       <dependency>
34         <groupId>org.opendaylight.mdsal</groupId>
35         <artifactId>mdsal-artifacts</artifactId>
36         <version>2.1.0-SNAPSHOT</version>
37         <type>pom</type>
38         <scope>import</scope>
39       </dependency>
40       <dependency>
41         <groupId>org.opendaylight.mdsal.model</groupId>
42         <artifactId>mdsal-model-artifacts</artifactId>
43         <version>0.9.0-SNAPSHOT</version>
44         <type>pom</type>
45         <scope>import</scope>
46       </dependency>
47       <dependency>
48         <groupId>${project.groupId}</groupId>
49         <artifactId>lispflowmapping-artifacts</artifactId>
50         <version>${project.version}</version>
51         <type>pom</type>
52         <scope>import</scope>
53       </dependency>
54       <dependency>
55         <groupId>${project.groupId}</groupId>
56         <artifactId>common.unittest.tools</artifactId>
57         <version>${project.version}</version>
58       </dependency>
59       <dependency>
60         <groupId>junit-addons</groupId>
61         <artifactId>junit-addons</artifactId>
62         <version>1.4</version>
63         <scope>test</scope>
64       </dependency>
65       <!--
66       <dependency>
67         <groupId>org.jmock</groupId>
68         <artifactId>jmock</artifactId>
69         <version>2.6.0</version>
70         <scope>test</scope>
71       </dependency>
72       -->
73     </dependencies>
74   </dependencyManagement>
75
76   <dependencies>
77     <dependency>
78       <groupId>org.mockito</groupId>
79       <artifactId>mockito-core</artifactId>
80       <scope>test</scope>
81     </dependency>
82   </dependencies>
83
84   <!--
85       Maven Site Configuration
86
87       The following configuration is necessary for maven-site-plugin to
88       correctly identify the correct deployment path for OpenDaylight Maven
89       sites.
90   -->
91   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
92
93   <distributionManagement>
94     <site>
95       <id>opendaylight-site</id>
96       <url>${nexus.site.url}/${project.artifactId}/</url>
97     </site>
98   </distributionManagement>
99
100 </project>