Fully remove Maven Sites
[lispflowmapping.git] / mappingservice / neutron / 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.6.0-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>mappingservice.neutron</artifactId>
12   <packaging>bundle</packaging>
13   <!-- <name> formatting is used by autorelease to parse and notify projects on
14        build failure. Please do not modify this unless you have a good reason. -->
15   <name>ODL :: lispflowmapping :: ${project.artifactId}</name>
16
17   <dependencyManagement>
18     <dependencies>
19       <dependency>
20         <groupId>org.opendaylight.netconf</groupId>
21         <artifactId>netconf-artifacts</artifactId>
22         <version>1.3.0-SNAPSHOT</version>
23         <type>pom</type>
24         <scope>import</scope>
25       </dependency>
26       <dependency>
27         <groupId>org.opendaylight.controller</groupId>
28         <artifactId>mdsal-artifacts</artifactId>
29         <version>1.6.0-SNAPSHOT</version>
30         <type>pom</type>
31         <scope>import</scope>
32       </dependency>
33     </dependencies>
34   </dependencyManagement>
35
36   <dependencies>
37     <dependency>
38       <groupId>org.opendaylight.lispflowmapping</groupId>
39       <artifactId>mappingservice.api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.lispflowmapping</groupId>
43       <artifactId>mappingservice.lisp-proto</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal-binding-api</artifactId>
48       <version>1.6.0-SNAPSHOT</version>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.neutron</groupId>
52       <artifactId>model</artifactId>
53       <version>0.9.0-SNAPSHOT</version>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.lispflowmapping</groupId>
57       <artifactId>common.unittest.tools</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.mdsal.model</groupId>
61       <artifactId>yang-ext</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.honeycomb.vbd</groupId>
65       <artifactId>vbd-api</artifactId>
66       <version>1.2.0-SNAPSHOT</version>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.netconf</groupId>
70       <artifactId>sal-netconf-connector</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.mdsal</groupId>
74       <artifactId>mdsal-singleton-common-api</artifactId>
75       <version>2.3.0-SNAPSHOT</version>
76     </dependency>
77
78     <!--Needed for testing-->
79     <dependency>
80       <groupId>junit-addons</groupId>
81       <artifactId>junit-addons</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.powermock</groupId>
85       <artifactId>powermock-api-mockito</artifactId>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.powermock</groupId>
90       <artifactId>powermock-module-junit4</artifactId>
91       <scope>test</scope>
92     </dependency>
93   </dependencies>
94 </project>