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