Switch from config-parent to {odl,binding-}parent
[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   <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     </dependencies>
66   </dependencyManagement>
67
68   <dependencies>
69     <dependency>
70       <groupId>org.mockito</groupId>
71       <artifactId>mockito-core</artifactId>
72       <scope>test</scope>
73     </dependency>
74   </dependencies>
75
76   <build>
77     <plugins>
78       <plugin>
79         <groupId>org.apache.felix</groupId>
80         <artifactId>maven-bundle-plugin</artifactId>
81       </plugin>
82     </plugins>
83   </build>
84
85   <!--
86       Maven Site Configuration
87
88       The following configuration is necessary for maven-site-plugin to
89       correctly identify the correct deployment path for OpenDaylight Maven
90       sites.
91   -->
92   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
93
94   <distributionManagement>
95     <site>
96       <id>opendaylight-site</id>
97       <url>${nexus.site.url}/${project.artifactId}/</url>
98     </site>
99   </distributionManagement>
100
101 </project>