Use odlparent checkstyle
[ovsdb.git] / southbound / southbound-it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2014 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
11   <parent>
12     <groupId>org.opendaylight.ovsdb</groupId>
13     <artifactId>it</artifactId>
14     <version>1.2.1-SNAPSHOT</version>
15     <relativePath>../../commons/it</relativePath>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.ovsdb</groupId>
19   <artifactId>southbound-it</artifactId>
20   <version>1.2.1-SNAPSHOT</version>
21   <packaging>jar</packaging>
22   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
23   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
24   <licenses>
25     <license>
26       <name>Eclipse Public License v1.0</name>
27       <url>http://www.eclipse.org/legal/epl-v10.html</url>
28     </license>
29   </licenses>
30   <developers>
31     <developer>
32       <name>Sam Hague</name>
33       <email>shague@gmail.com</email>
34       <url>https://github.com/shague</url>
35     </developer>
36   </developers>
37   <scm>
38     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
39     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
40     <tag>HEAD</tag>
41     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
42   </scm>
43   <dependencyManagement>
44     <dependencies>
45       <dependency>
46         <groupId>${project.groupId}</groupId>
47         <artifactId>southbound-artifacts</artifactId>
48         <version>${project.version}</version>
49         <type>pom</type>
50         <scope>import</scope>
51       </dependency>
52       <dependency>
53         <groupId>org.opendaylight.controller</groupId>
54         <artifactId>config-artifacts</artifactId>
55         <version>0.4.0-SNAPSHOT</version>
56         <type>pom</type>
57         <scope>import</scope>
58       </dependency>
59       <dependency>
60         <groupId>org.opendaylight.controller</groupId>
61         <artifactId>mdsal-artifacts</artifactId>
62         <version>${mdsal.version}</version>
63         <type>pom</type>
64         <scope>import</scope>
65       </dependency>
66     </dependencies>
67   </dependencyManagement>
68   <dependencies>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>sal-binding-api</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>sal-common-api</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>${project.groupId}</groupId>
79       <artifactId>southbound-features</artifactId>
80       <classifier>features</classifier>
81       <type>xml</type>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>config-util</artifactId>
86     </dependency>
87     <!-- Dependencies for pax exam karaf container -->
88     <dependency>
89       <groupId>org.ops4j.pax.exam</groupId>
90       <artifactId>pax-exam-container-karaf</artifactId>
91       <scope>compile</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.ops4j.pax.exam</groupId>
95       <artifactId>pax-exam-junit4</artifactId>
96       <scope>compile</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.ops4j.pax.exam</groupId>
100       <artifactId>pax-exam</artifactId>
101       <scope>compile</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.ops4j.pax.url</groupId>
105       <artifactId>pax-url-aether</artifactId>
106       <scope>compile</scope>
107     </dependency>
108     <dependency>
109       <groupId>javax.inject</groupId>
110       <artifactId>javax.inject</artifactId>
111       <version>1</version>
112       <scope>compile</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.apache.karaf.features</groupId>
116       <artifactId>org.apache.karaf.features.core</artifactId>
117       <version>${karaf.version}</version>
118       <scope>compile</scope>
119     </dependency>
120     <dependency>
121       <groupId>org.osgi</groupId>
122       <artifactId>org.osgi.core</artifactId>
123       <scope>compile</scope>
124     </dependency>
125     <dependency>
126       <groupId>junit</groupId>
127       <artifactId>junit</artifactId>
128       <scope>compile</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.slf4j</groupId>
132       <artifactId>slf4j-simple</artifactId>
133       <scope>test</scope>
134     </dependency>
135     <dependency>
136       <groupId>org.codehaus.sonar-plugins.java</groupId>
137       <artifactId>sonar-jacoco-listeners</artifactId>
138       <scope>test</scope>
139     </dependency>
140     <!-- AbstractConfigTestBase::getKarafDistro() needs this to find its version -->
141     <dependency>
142       <groupId>org.opendaylight.ovsdb</groupId>
143       <artifactId>southbound-karaf</artifactId>
144       <version>${project.version}</version>
145       <scope>test</scope>
146     </dependency>
147   </dependencies>
148   <build>
149     <plugins>
150       <plugin>
151         <groupId>org.jacoco</groupId>
152         <artifactId>jacoco-maven-plugin</artifactId>
153       </plugin>
154       <plugin>
155         <groupId>org.apache.maven.plugins</groupId>
156         <artifactId>maven-failsafe-plugin</artifactId>
157       </plugin>
158       <!-- Needed if you use versionAsInProject() -->
159       <plugin>
160         <groupId>org.apache.servicemix.tooling</groupId>
161         <artifactId>depends-maven-plugin</artifactId>
162         <version>1.2</version>
163         <executions>
164           <execution>
165             <id>generate-depends-file</id>
166             <goals>
167               <goal>generate-depends-file</goal>
168             </goals>
169           </execution>
170         </executions>
171       </plugin>
172       <plugin>
173         <groupId>org.apache.maven.plugins</groupId>
174         <artifactId>maven-checkstyle-plugin</artifactId>
175         <configuration>
176           <failsOnError>true</failsOnError>
177           <includeTestSourceDirectory>true</includeTestSourceDirectory>
178         </configuration>
179       </plugin>
180     </plugins>
181   </build>
182 </project>