Use odlparent checkstyle
[ovsdb.git] / openstack / net-virt-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>openstack.net-virt-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>ovsdb-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>features-ovsdb</artifactId>
80       <version>1.2.1-SNAPSHOT</version>
81       <classifier>features</classifier>
82       <type>xml</type>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.controller</groupId>
86       <artifactId>config-util</artifactId>
87     </dependency>
88     <!-- Dependencies for pax exam karaf container -->
89     <dependency>
90       <groupId>org.ops4j.pax.exam</groupId>
91       <artifactId>pax-exam-container-karaf</artifactId>
92       <scope>compile</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.ops4j.pax.exam</groupId>
96       <artifactId>pax-exam-junit4</artifactId>
97       <scope>compile</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.ops4j.pax.exam</groupId>
101       <artifactId>pax-exam</artifactId>
102       <scope>compile</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.ops4j.pax.url</groupId>
106       <artifactId>pax-url-aether</artifactId>
107       <scope>compile</scope>
108     </dependency>
109     <dependency>
110       <groupId>javax.inject</groupId>
111       <artifactId>javax.inject</artifactId>
112       <version>1</version>
113       <scope>compile</scope>
114     </dependency>
115     <dependency>
116       <groupId>org.apache.karaf.features</groupId>
117       <artifactId>org.apache.karaf.features.core</artifactId>
118       <version>${karaf.version}</version>
119       <scope>compile</scope>
120     </dependency>
121     <dependency>
122       <groupId>org.osgi</groupId>
123       <artifactId>org.osgi.core</artifactId>
124       <scope>compile</scope>
125     </dependency>
126     <dependency>
127       <groupId>junit</groupId>
128       <artifactId>junit</artifactId>
129       <scope>compile</scope>
130     </dependency>
131     <dependency>
132       <groupId>org.codehaus.sonar-plugins.java</groupId>
133       <artifactId>sonar-jacoco-listeners</artifactId>
134       <scope>test</scope>
135     </dependency>
136     <!-- AbstractConfigTestBase::getKarafDistro() needs this to find its version -->
137     <dependency>
138       <groupId>org.opendaylight.ovsdb</groupId>
139       <artifactId>karaf</artifactId>
140       <version>${project.version}</version>
141       <scope>test</scope>
142     </dependency>
143   </dependencies>
144   <build>
145     <plugins>
146       <plugin>
147         <groupId>org.jacoco</groupId>
148         <artifactId>jacoco-maven-plugin</artifactId>
149       </plugin>
150       <plugin>
151         <groupId>org.apache.maven.plugins</groupId>
152         <artifactId>maven-checkstyle-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     </plugins>
173   </build>
174   <profiles>
175     <profile>
176       <id>default</id>
177       <activation>
178         <activeByDefault>true</activeByDefault>
179       </activation>
180       <properties>
181         <skipITs>true</skipITs>
182       </properties>
183     </profile>
184     <profile>
185       <id>integrationtest</id>
186       <activation>
187         <activeByDefault>false</activeByDefault>
188       </activation>
189       <properties>
190         <skipITs>false</skipITs>
191       </properties>
192     </profile>
193   </profiles>
194 </project>