Remove references to mdsal-model-artifacts
[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>3.1.3</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.lispflowmapping</groupId>
13   <artifactId>mappingservice-parent</artifactId>
14   <version>1.9.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>2.6.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         <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   <dependencies>
69     <dependency>
70       <groupId>org.mockito</groupId>
71       <artifactId>mockito-core</artifactId>
72       <scope>test</scope>
73     </dependency>
74   </dependencies>
75
76   <build>
77     <pluginManagement>
78       <plugins>
79         <plugin>
80           <!-- Enforce odlparent checkstyle -->
81           <groupId>org.apache.maven.plugins</groupId>
82           <artifactId>maven-checkstyle-plugin</artifactId>
83           <configuration>
84             <includeTestSourceDirectory>true</includeTestSourceDirectory>
85             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
86           </configuration>
87         </plugin>
88       </plugins>
89     </pluginManagement>
90     <plugins>
91       <plugin>
92         <groupId>org.apache.felix</groupId>
93         <artifactId>maven-bundle-plugin</artifactId>
94       </plugin>
95     </plugins>
96   </build>
97 </project>