Switch to using lisp-address instead of LispAddress
[lispflowmapping.git] / mappingservice / lisp-proto / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>0.8.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.lispflowmapping</groupId>
20   <artifactId>mappingservice.lisp-proto</artifactId>
21   <version>1.3.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <name>Mapping Service LISP Protocol</name>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.mdsal.model</groupId>
28       <artifactId>ietf-inet-types</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.mdsal.model</groupId>
32       <artifactId>ietf-yang-types</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.apache.commons</groupId>
36       <artifactId>commons-lang3</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.lispflowmapping</groupId>
40       <artifactId>common.unittest.tools</artifactId>
41       <version>${project.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>junit-addons</groupId>
45       <artifactId>junit-addons</artifactId>
46       <version>1.4</version>
47       <scope>test</scope>
48     </dependency>
49   </dependencies>
50
51   <!-- Temporarily disable compiling non-generated code, like serializers, which won't build for now -->
52   <build>
53     <plugins>
54       <plugin>
55         <artifactId>maven-compiler-plugin</artifactId>
56         <executions>
57           <execution>
58             <id>default-compile</id>
59             <phase>compile</phase>
60             <goals>
61               <goal>compile</goal>
62             </goals>
63             <configuration>
64               <excludes>
65                 <exclude>org/opendaylight/lispflowmapping/**</exclude>
66               </excludes>
67             </configuration>
68           </execution>
69           <execution>
70             <id>default-testCompile</id>
71             <phase>test-compile</phase>
72             <goals>
73               <goal>testCompile</goal>
74             </goals>
75             <configuration>
76               <skip>true</skip>
77             </configuration>
78           </execution>
79         </executions>
80       </plugin>
81     </plugins>
82   </build>
83 </project>