Incrementing versions by 0.1.0 for post-lithium master branch
[netvirt.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.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>openstack.net-virt-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>ovsdb-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>features-ovsdb</artifactId>
83       <version>1.2.0-SNAPSHOT</version>
84       <classifier>features</classifier>
85       <type>xml</type>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>config-util</artifactId>
90     </dependency>
91     <!-- Dependencies for pax exam karaf container -->
92     <dependency>
93       <groupId>org.ops4j.pax.exam</groupId>
94       <artifactId>pax-exam-container-karaf</artifactId>
95       <scope>compile</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.ops4j.pax.exam</groupId>
99       <artifactId>pax-exam-junit4</artifactId>
100       <scope>compile</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.ops4j.pax.exam</groupId>
104       <artifactId>pax-exam</artifactId>
105       <scope>compile</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.ops4j.pax.url</groupId>
109       <artifactId>pax-url-aether</artifactId>
110       <scope>compile</scope>
111     </dependency>
112     <dependency>
113       <groupId>javax.inject</groupId>
114       <artifactId>javax.inject</artifactId>
115       <version>1</version>
116       <scope>compile</scope>
117     </dependency>
118     <dependency>
119       <groupId>org.apache.karaf.features</groupId>
120       <artifactId>org.apache.karaf.features.core</artifactId>
121       <version>${karaf.version}</version>
122       <scope>compile</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.osgi</groupId>
126       <artifactId>org.osgi.core</artifactId>
127       <scope>compile</scope>
128     </dependency>
129     <dependency>
130       <groupId>junit</groupId>
131       <artifactId>junit</artifactId>
132       <scope>compile</scope>
133     </dependency>
134   </dependencies>
135   <build>
136     <plugins>
137       <plugin>
138         <groupId>org.apache.maven.plugins</groupId>
139         <artifactId>maven-failsafe-plugin</artifactId>
140         <executions>
141           <execution>
142             <goals>
143               <goal>integration-test</goal>
144               <goal>verify</goal>
145             </goals>
146             <configuration>
147               <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
148               <skipTests>${skip.integrationtest}</skipTests>
149             </configuration>
150           </execution>
151         </executions>
152       </plugin>
153       <!-- Needed if you use versionAsInProject() -->
154       <plugin>
155         <groupId>org.apache.servicemix.tooling</groupId>
156         <artifactId>depends-maven-plugin</artifactId>
157         <version>1.2</version>
158         <executions>
159           <execution>
160             <id>generate-depends-file</id>
161             <goals>
162               <goal>generate-depends-file</goal>
163             </goals>
164           </execution>
165         </executions>
166       </plugin>
167       <!--<plugin>
168         <groupId>org.apache.maven.plugins</groupId>
169         <artifactId>maven-checkstyle-plugin</artifactId>
170         <configuration>
171           <configLocation>
172             ${project.basedir}/../../commons/parent/src/main/resources/ovsdb_checks.xml
173           </configLocation>
174           <includeTestSourceDirectory>true</includeTestSourceDirectory>
175           <failsOnError>true</failsOnError>
176           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
177           <excludes>**/yang/</excludes>
178         </configuration>
179       </plugin>-->
180       <plugin>
181         <groupId>org.jacoco</groupId>
182         <artifactId>jacoco-maven-plugin</artifactId>
183         <executions>
184           <execution>
185             <id>prepare-ut-agent</id>
186             <goals>
187               <goal>prepare-agent</goal>
188             </goals>
189             <configuration>
190               <destFile>${sonar.jacoco.reportPath}</destFile>
191             </configuration>
192           </execution>
193           <execution>
194             <id>prepare-it-agent</id>
195             <goals>
196               <goal>prepare-agent</goal>
197             </goals>
198             <configuration>
199               <destFile>${sonar.jacoco.itReportPath}</destFile>
200             </configuration>
201           </execution>
202           <execution>
203             <id>default-report</id>
204             <goals>
205               <goal>report</goal>
206             </goals>
207           </execution>
208           <execution>
209             <id>default-report-integration</id>
210             <goals>
211               <goal>report-integration</goal>
212             </goals>
213           </execution>
214         </executions>
215       </plugin>
216     </plugins>
217   </build>
218   <profiles>
219     <profile>
220       <id>integrationtest</id>
221       <activation>
222         <activeByDefault>false</activeByDefault>
223       </activation>
224       <properties>
225         <skip.integrationtest>false</skip.integrationtest>
226       </properties>
227     </profile>
228   </profiles>
229 </project>