Incrementing versions by 0.1.0 for post-lithium master branch
[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.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.4.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.ovsdb</groupId>
19   <artifactId>southbound-it</artifactId>
20   <version>1.2.0-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   <properties>
44     <skip.integrationtest>true</skip.integrationtest>
45   </properties>
46   <dependencyManagement>
47     <dependencies>
48       <dependency>
49         <groupId>${project.groupId}</groupId>
50         <artifactId>southbound-artifacts</artifactId>
51         <version>${project.version}</version>
52         <type>pom</type>
53         <scope>import</scope>
54       </dependency>
55       <dependency>
56         <groupId>org.opendaylight.controller</groupId>
57         <artifactId>config-artifacts</artifactId>
58         <version>0.4.0-SNAPSHOT</version>
59         <type>pom</type>
60         <scope>import</scope>
61       </dependency>
62       <dependency>
63         <groupId>org.opendaylight.controller</groupId>
64         <artifactId>mdsal-artifacts</artifactId>
65         <version>${mdsal.version}</version>
66         <type>pom</type>
67         <scope>import</scope>
68       </dependency>
69     </dependencies>
70   </dependencyManagement>
71   <dependencies>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal-binding-api</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal-common-api</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>${project.groupId}</groupId>
82       <artifactId>southbound-features</artifactId>
83       <classifier>features</classifier>
84       <type>xml</type>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>config-util</artifactId>
89     </dependency>
90     <!-- Dependencies for pax exam karaf container -->
91     <dependency>
92       <groupId>org.ops4j.pax.exam</groupId>
93       <artifactId>pax-exam-container-karaf</artifactId>
94       <scope>compile</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.ops4j.pax.exam</groupId>
98       <artifactId>pax-exam-junit4</artifactId>
99       <scope>compile</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.ops4j.pax.exam</groupId>
103       <artifactId>pax-exam</artifactId>
104       <scope>compile</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.ops4j.pax.url</groupId>
108       <artifactId>pax-url-aether</artifactId>
109       <scope>compile</scope>
110     </dependency>
111     <dependency>
112       <groupId>javax.inject</groupId>
113       <artifactId>javax.inject</artifactId>
114       <version>1</version>
115       <scope>compile</scope>
116     </dependency>
117     <dependency>
118       <groupId>org.apache.karaf.features</groupId>
119       <artifactId>org.apache.karaf.features.core</artifactId>
120       <version>${karaf.version}</version>
121       <scope>compile</scope>
122     </dependency>
123     <dependency>
124       <groupId>org.osgi</groupId>
125       <artifactId>org.osgi.core</artifactId>
126       <scope>compile</scope>
127     </dependency>
128     <dependency>
129       <groupId>junit</groupId>
130       <artifactId>junit</artifactId>
131       <scope>compile</scope>
132     </dependency>
133     <dependency>
134       <groupId>org.slf4j</groupId>
135       <artifactId>slf4j-simple</artifactId>
136       <scope>test</scope>
137     </dependency>
138   </dependencies>
139   <build>
140     <plugins>
141       <plugin>
142         <groupId>org.apache.maven.plugins</groupId>
143         <artifactId>maven-failsafe-plugin</artifactId>
144         <executions>
145           <execution>
146             <goals>
147               <goal>integration-test</goal>
148               <goal>verify</goal>
149             </goals>
150             <configuration>
151               <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
152               <skipTests>${skip.integrationtest}</skipTests>
153             </configuration>
154           </execution>
155         </executions>
156       </plugin>
157       <!-- Needed if you use versionAsInProject() -->
158       <plugin>
159         <groupId>org.apache.servicemix.tooling</groupId>
160         <artifactId>depends-maven-plugin</artifactId>
161         <version>1.2</version>
162         <executions>
163           <execution>
164             <id>generate-depends-file</id>
165             <goals>
166               <goal>generate-depends-file</goal>
167             </goals>
168           </execution>
169         </executions>
170       </plugin>
171       <plugin>
172         <groupId>org.apache.maven.plugins</groupId>
173         <artifactId>maven-checkstyle-plugin</artifactId>
174         <configuration>
175           <configLocation>
176             ${project.basedir}/../../commons/parent/src/main/resources/ovsdb_checks.xml
177           </configLocation>
178           <includeTestSourceDirectory>true</includeTestSourceDirectory>
179           <failsOnError>true</failsOnError>
180           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
181           <excludes>**/yang/</excludes>
182         </configuration>
183       </plugin>
184       <plugin>
185         <groupId>org.jacoco</groupId>
186         <artifactId>jacoco-maven-plugin</artifactId>
187         <executions>
188           <execution>
189             <id>prepare-ut-agent</id>
190             <goals>
191               <goal>prepare-agent</goal>
192             </goals>
193             <configuration>
194               <destFile>${sonar.jacoco.reportPath}</destFile>
195             </configuration>
196           </execution>
197           <execution>
198             <id>prepare-it-agent</id>
199             <goals>
200               <goal>prepare-agent</goal>
201             </goals>
202             <configuration>
203               <destFile>${sonar.jacoco.itReportPath}</destFile>
204             </configuration>
205           </execution>
206           <execution>
207             <id>default-report</id>
208             <goals>
209               <goal>report</goal>
210             </goals>
211           </execution>
212           <execution>
213             <id>default-report-integration</id>
214             <goals>
215               <goal>report-integration</goal>
216             </goals>
217           </execution>
218         </executions>
219       </plugin>
220     </plugins>
221   </build>
222   <profiles>
223     <profile>
224       <id>integrationtest</id>
225       <activation>
226         <activeByDefault>false</activeByDefault>
227       </activation>
228       <properties>
229         <skip.integrationtest>false</skip.integrationtest>
230       </properties>
231     </profile>
232   </profiles>
233 </project>