Add line tracking for UT
[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>org.powermock</groupId>
81       <artifactId>powermock-api-mockito</artifactId>
82       <version>${powermock.version}</version>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.powermock</groupId>
87       <artifactId>powermock-module-junit4</artifactId>
88       <version>${powermock.version}</version>
89       <scope>test</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.slf4j</groupId>
93       <artifactId>slf4j-simple</artifactId>
94       <scope>test</scope>
95     </dependency>
96   </dependencies>
97   <build>
98     <plugins>
99       <plugin>
100         <groupId>org.apache.maven.plugins</groupId>
101         <artifactId>maven-checkstyle-plugin</artifactId>
102         <configuration>
103           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
104         </configuration>
105       </plugin>
106     </plugins>
107   </build>
108 </project>