Merge "Make negative mapping TTL configurable"
[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>2.0.2</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.lispflowmapping</groupId>
13   <artifactId>mappingservice-parent</artifactId>
14   <version>1.6.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.3.0-SNAPSHOT</version>
43         <type>pom</type>
44         <scope>import</scope>
45       </dependency>
46       <dependency>
47         <groupId>org.opendaylight.mdsal.model</groupId>
48         <artifactId>mdsal-model-artifacts</artifactId>
49         <version>0.11.0-SNAPSHOT</version>
50         <type>pom</type>
51         <scope>import</scope>
52       </dependency>
53       <dependency>
54         <groupId>${project.groupId}</groupId>
55         <artifactId>lispflowmapping-artifacts</artifactId>
56         <version>${project.version}</version>
57         <type>pom</type>
58         <scope>import</scope>
59       </dependency>
60       <dependency>
61         <groupId>${project.groupId}</groupId>
62         <artifactId>common.unittest.tools</artifactId>
63         <version>${project.version}</version>
64         <scope>test</scope>
65       </dependency>
66       <dependency>
67         <groupId>junit-addons</groupId>
68         <artifactId>junit-addons</artifactId>
69         <version>1.4</version>
70         <scope>test</scope>
71       </dependency>
72     </dependencies>
73   </dependencyManagement>
74
75   <dependencies>
76     <dependency>
77       <groupId>org.mockito</groupId>
78       <artifactId>mockito-core</artifactId>
79       <scope>test</scope>
80     </dependency>
81   </dependencies>
82
83   <build>
84     <pluginManagement>
85       <plugins>
86         <plugin>
87           <!-- Enforce odlparent checkstyle -->
88           <groupId>org.apache.maven.plugins</groupId>
89           <artifactId>maven-checkstyle-plugin</artifactId>
90           <configuration>
91             <includeTestSourceDirectory>true</includeTestSourceDirectory>
92             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
93           </configuration>
94         </plugin>
95       </plugins>
96     </pluginManagement>
97     <plugins>
98       <plugin>
99         <groupId>org.apache.felix</groupId>
100         <artifactId>maven-bundle-plugin</artifactId>
101       </plugin>
102     </plugins>
103   </build>
104
105   <!--
106       Maven Site Configuration
107
108       The following configuration is necessary for maven-site-plugin to
109       correctly identify the correct deployment path for OpenDaylight Maven
110       sites.
111   -->
112   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
113
114   <distributionManagement>
115     <site>
116       <id>opendaylight-site</id>
117       <url>${nexus.site.url}/${project.artifactId}/</url>
118     </site>
119   </distributionManagement>
120
121 </project>