Merge "Bug 6278: Depend on odlparent's version of karaf.branding & opendaylight-karaf...
[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       </dependency>
63       <dependency>
64         <groupId>junit-addons</groupId>
65         <artifactId>junit-addons</artifactId>
66         <version>1.4</version>
67         <scope>test</scope>
68       </dependency>
69     </dependencies>
70   </dependencyManagement>
71
72   <dependencies>
73     <dependency>
74       <groupId>org.mockito</groupId>
75       <artifactId>mockito-core</artifactId>
76       <scope>test</scope>
77     </dependency>
78   </dependencies>
79
80   <build>
81     <plugins>
82       <plugin>
83         <groupId>org.apache.felix</groupId>
84         <artifactId>maven-bundle-plugin</artifactId>
85       </plugin>
86     </plugins>
87   </build>
88
89   <!--
90       Maven Site Configuration
91
92       The following configuration is necessary for maven-site-plugin to
93       correctly identify the correct deployment path for OpenDaylight Maven
94       sites.
95   -->
96   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
97
98   <distributionManagement>
99     <site>
100       <id>opendaylight-site</id>
101       <url>${nexus.site.url}/${project.artifactId}/</url>
102     </site>
103   </distributionManagement>
104
105 </project>