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