Bump mdsal to 4.0.2
[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>5.0.0</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.lispflowmapping</groupId>
13   <artifactId>mappingservice-parent</artifactId>
14   <version>1.10.0-SNAPSHOT</version>
15   <packaging>pom</packaging>
16   <!-- <name> formatting is used by autorelease to parse and notify projects on
17        build failure. Please do not modify this unless you have a good reason. -->
18   <name>ODL :: lispflowmapping :: ${project.artifactId}</name>
19
20   <properties>
21     <pmd.cpd.fail>true</pmd.cpd.fail>
22   </properties>
23
24   <modules>
25     <module>lisp-proto</module>
26     <module>api</module>
27     <module>inmemorydb</module>
28     <module>dsbackend</module>
29     <module>mapcache</module>
30     <module>config</module>
31     <module>implementation</module>
32     <module>southbound</module>
33     <module>neutron</module>
34     <module>shell</module>
35   </modules>
36
37   <dependencyManagement>
38     <dependencies>
39       <dependency>
40         <groupId>org.opendaylight.mdsal</groupId>
41         <artifactId>mdsal-artifacts</artifactId>
42         <version>4.0.2</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         <scope>test</scope>
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   <build>
69     <pluginManagement>
70       <plugins>
71         <plugin>
72           <!-- Enforce odlparent checkstyle -->
73           <groupId>org.apache.maven.plugins</groupId>
74           <artifactId>maven-checkstyle-plugin</artifactId>
75           <configuration>
76             <includeTestSourceDirectory>true</includeTestSourceDirectory>
77             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
78           </configuration>
79         </plugin>
80       </plugins>
81     </pluginManagement>
82     <plugins>
83       <plugin>
84         <groupId>org.apache.felix</groupId>
85         <artifactId>maven-bundle-plugin</artifactId>
86       </plugin>
87     </plugins>
88   </build>
89 </project>