MDSAL DS acces - standalone bundle.
[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       <dependency>
73         <groupId>org.opendaylight.neutron</groupId>
74         <artifactId>neutron-spi</artifactId>
75         <version>0.7.0-SNAPSHOT</version>
76       </dependency>
77     </dependencies>
78   </dependencyManagement>
79
80   <dependencies>
81     <dependency>
82       <groupId>org.mockito</groupId>
83       <artifactId>mockito-core</artifactId>
84       <scope>test</scope>
85     </dependency>
86   </dependencies>
87
88   <build>
89     <pluginManagement>
90       <plugins>
91         <plugin>
92           <!-- Temporarily override the odlparent checkstyle configuration.
93                We want to enforce some simple rules and add more as we clean up code -->
94           <artifactId>maven-checkstyle-plugin</artifactId>
95           <configuration>
96             <configLocation>checkstyle/java_rules.xml</configLocation>
97             <includeTestSourceDirectory>true</includeTestSourceDirectory>
98             <excludes>org/opendaylight/yang/gen/**,**/config/yang/**</excludes>
99             <failsOnError>true</failsOnError>
100             <consoleOutput>true</consoleOutput>
101           </configuration>
102           <dependencies>
103             <dependency>
104               <groupId>org.opendaylight.lispflowmapping</groupId>
105               <artifactId>common.build.tools</artifactId>
106               <version>${project.version}</version>
107             </dependency>
108           </dependencies>
109           <executions>
110             <execution>
111               <goals>
112                 <goal>check</goal>
113               </goals>
114               <phase>process-sources</phase>
115             </execution>
116           </executions>
117         </plugin>
118       </plugins>
119     </pluginManagement>
120   </build>
121
122   <!--
123       Maven Site Configuration
124
125       The following configuration is necessary for maven-site-plugin to
126       correctly identify the correct deployment path for OpenDaylight Maven
127       sites.
128   -->
129   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
130
131   <distributionManagement>
132     <site>
133       <id>opendaylight-site</id>
134       <url>${nexus.site.url}/${project.artifactId}/</url>
135     </site>
136   </distributionManagement>
137
138 </project>