Spin out mapcache package from implementation
[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>mapcache</module>
23     <module>implementation</module>
24     <module>southbound</module>
25     <module>neutron</module>
26     <module>shell</module>
27   </modules>
28
29   <dependencyManagement>
30     <dependencies>
31       <dependency>
32         <groupId>org.opendaylight.mdsal</groupId>
33         <artifactId>mdsal-artifacts</artifactId>
34         <version>2.1.0-SNAPSHOT</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38       <dependency>
39         <groupId>org.opendaylight.mdsal.model</groupId>
40         <artifactId>mdsal-model-artifacts</artifactId>
41         <version>0.9.0-SNAPSHOT</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45       <dependency>
46         <groupId>${project.groupId}</groupId>
47         <artifactId>lispflowmapping-artifacts</artifactId>
48         <version>${project.version}</version>
49         <type>pom</type>
50         <scope>import</scope>
51       </dependency>
52       <dependency>
53         <groupId>${project.groupId}</groupId>
54         <artifactId>common.unittest.tools</artifactId>
55         <version>${project.version}</version>
56       </dependency>
57       <dependency>
58         <groupId>junit-addons</groupId>
59         <artifactId>junit-addons</artifactId>
60         <version>1.4</version>
61         <scope>test</scope>
62       </dependency>
63       <!--
64       <dependency>
65         <groupId>org.jmock</groupId>
66         <artifactId>jmock</artifactId>
67         <version>2.6.0</version>
68         <scope>test</scope>
69       </dependency>
70       -->
71       <dependency>
72         <groupId>org.opendaylight.neutron</groupId>
73         <artifactId>neutron-spi</artifactId>
74         <version>0.7.0-SNAPSHOT</version>
75       </dependency>
76     </dependencies>
77   </dependencyManagement>
78
79   <build>
80     <pluginManagement>
81       <plugins>
82         <plugin>
83           <!-- Temporarily override the odlparent checkstyle configuration.
84                We want to enforce some simple rules and add more as we clean up code -->
85           <artifactId>maven-checkstyle-plugin</artifactId>
86           <configuration>
87             <configLocation>checkstyle/java_rules.xml</configLocation>
88             <includeTestSourceDirectory>true</includeTestSourceDirectory>
89             <excludes>org/opendaylight/yang/gen/**,**/config/yang/**</excludes>
90             <failsOnError>true</failsOnError>
91             <consoleOutput>true</consoleOutput>
92           </configuration>
93           <dependencies>
94             <dependency>
95               <groupId>org.opendaylight.lispflowmapping</groupId>
96               <artifactId>common.build.tools</artifactId>
97               <version>${project.version}</version>
98             </dependency>
99           </dependencies>
100           <executions>
101             <execution>
102               <goals>
103                 <goal>check</goal>
104               </goals>
105               <phase>process-sources</phase>
106             </execution>
107           </executions>
108         </plugin>
109       </plugins>
110     </pluginManagement>
111   </build>
112
113   <!--
114       Maven Site Configuration
115
116       The following configuration is necessary for maven-site-plugin to
117       correctly identify the correct deployment path for OpenDaylight Maven
118       sites.
119   -->
120   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
121
122   <distributionManagement>
123     <site>
124       <id>opendaylight-site</id>
125       <url>${nexus.site.url}/${project.artifactId}/</url>
126     </site>
127   </distributionManagement>
128
129 </project>