1cae893be8d0f3dd2cdae6d1a89bc02185b59850
[lispflowmapping.git] / mappingservice / implementation / 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.lispflowmapping</groupId>
7     <artifactId>mappingservice-parent</artifactId>
8     <version>1.5.0-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>mappingservice.implementation</artifactId>
12   <packaging>bundle</packaging>
13   <name>Mapping Service Implementation</name>
14
15   <dependencies>
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>mappingservice.api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>${project.groupId}</groupId>
22       <artifactId>mappingservice.dsbackend</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>${project.groupId}</groupId>
26       <artifactId>mappingservice.lisp-proto</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>mappingservice.mapcache</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>common.unittest.tools</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>junit-addons</groupId>
38       <artifactId>junit-addons</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.powermock</groupId>
42       <artifactId>powermock-api-mockito</artifactId>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.powermock</groupId>
47       <artifactId>powermock-module-junit4</artifactId>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.lispflowmapping</groupId>
52       <artifactId>mappingservice.inmemorydb</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <!-- needed for osgi console -->
56     <dependency>
57       <groupId>org.eclipse.tycho</groupId>
58       <artifactId>org.eclipse.osgi</artifactId>
59     </dependency>
60   </dependencies>
61
62   <build>
63     <pluginManagement>
64       <plugins>
65         <plugin>
66           <!-- Temporarily override the odlparent checkstyle configuration.
67                We want to enforce some simple rules and add more as we clean up code -->
68           <artifactId>maven-checkstyle-plugin</artifactId>
69           <configuration>
70             <configLocation>checkstyle/java_rules.xml</configLocation>
71             <includeTestSourceDirectory>true</includeTestSourceDirectory>
72             <excludes>org/opendaylight/yang/gen/**,**/config/yang/**</excludes>
73             <failsOnError>true</failsOnError>
74             <consoleOutput>true</consoleOutput>
75           </configuration>
76           <dependencies>
77             <dependency>
78               <groupId>org.opendaylight.lispflowmapping</groupId>
79               <artifactId>common.build.tools</artifactId>
80               <version>${project.version}</version>
81             </dependency>
82           </dependencies>
83           <executions>
84             <execution>
85               <goals>
86                 <goal>check</goal>
87               </goals>
88               <phase>process-sources</phase>
89             </execution>
90           </executions>
91         </plugin>
92       </plugins>
93     </pluginManagement>
94   </build>
95
96   <!--
97       Maven Site Configuration
98
99       The following configuration is necessary for maven-site-plugin to
100       correctly identify the correct deployment path for OpenDaylight Maven
101       sites.
102   -->
103   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
104
105   <distributionManagement>
106     <site>
107       <id>opendaylight-site</id>
108       <url>${nexus.site.url}/${project.artifactId}/</url>
109     </site>
110   </distributionManagement>
111
112 </project>