Merge "Support Router Advertisement functionality when an RS is received."
[netvirt.git] / vpnservice / ipv6service / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=2 tabstop=2: --><!--
3 Copyright (c) 2016 Red Hat, 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
11   <parent>
12     <groupId>org.opendaylight.netvirt</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.3.0-SNAPSHOT</version>
15     <relativePath>../../commons/config-parent</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.netvirt</groupId>
20   <artifactId>ipv6service-impl</artifactId>
21   <version>0.3.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <properties>
25     <openflow.plugin.version>0.3.0-SNAPSHOT</openflow.plugin.version>
26     <powermock.version>1.6.4</powermock.version>
27   </properties>
28
29   <dependencies>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>ipv6service-api</artifactId>
33       <version>${project.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.openflowplugin.model</groupId>
37       <artifactId>model-flow-service</artifactId>
38       <version>${openflow.plugin.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.neutron</groupId>
42       <artifactId>model</artifactId>
43       <version>0.7.0-SNAPSHOT</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal-binding-api</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.yangtools</groupId>
51       <artifactId>yang-common</artifactId>
52       <version>1.0.0-SNAPSHOT</version>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.ovsdb</groupId>
56       <artifactId>southbound-api</artifactId>
57       <version>1.3.0-SNAPSHOT</version>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.openflowplugin</groupId>
61       <artifactId>openflowplugin-api</artifactId>
62       <version>${openflow.plugin.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.genius</groupId>
66       <artifactId>mdsalutil-api</artifactId>
67       <version>${genius.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>${project.groupId}</groupId>
71       <artifactId>neutronvpn-api</artifactId>
72       <version>${vpnservices.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.genius</groupId>
76       <artifactId>interfacemanager-api</artifactId>
77       <version>${genius.version}</version>
78     </dependency>
79     <dependency>
80       <groupId>junit</groupId>
81       <artifactId>junit</artifactId>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.powermock</groupId>
86       <artifactId>powermock-api-mockito</artifactId>
87       <version>${powermock.version}</version>
88       <scope>test</scope>
89     </dependency>
90     <dependency>
91       <groupId>org.powermock</groupId>
92       <artifactId>powermock-module-junit4</artifactId>
93       <version>${powermock.version}</version>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.codehaus.sonar-plugins.java</groupId>
98       <artifactId>sonar-jacoco-listeners</artifactId>
99       <version>${sonar-jacoco-listeners.version}</version>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.slf4j</groupId>
104       <artifactId>slf4j-simple</artifactId>
105       <scope>test</scope>
106     </dependency>
107   </dependencies>
108   <build>
109     <plugins>
110       <plugin>
111         <groupId>org.apache.maven.plugins</groupId>
112         <artifactId>maven-checkstyle-plugin</artifactId>
113         <configuration>
114           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
115         </configuration>
116       </plugin>
117     </plugins>
118   </build>
119 </project>