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