Merge "Slight refactoring of the lifecycle of data"
[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     <sonar-jacoco-listeners.version>2.4</sonar-jacoco-listeners.version>
46     <root.directory>${env.PWD}</root.directory>
47     <sonar.jacoco.itReportPath>${root.directory}/target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
48   </properties>
49   <dependencyManagement>
50     <dependencies>
51       <dependency>
52         <groupId>${project.groupId}</groupId>
53         <artifactId>ovsdb-artifacts</artifactId>
54         <version>${project.version}</version>
55         <type>pom</type>
56         <scope>import</scope>
57       </dependency>
58       <dependency>
59         <groupId>org.opendaylight.controller</groupId>
60         <artifactId>config-artifacts</artifactId>
61         <version>0.4.0-SNAPSHOT</version>
62         <type>pom</type>
63         <scope>import</scope>
64       </dependency>
65       <dependency>
66         <groupId>org.opendaylight.controller</groupId>
67         <artifactId>mdsal-artifacts</artifactId>
68         <version>${mdsal.version}</version>
69         <type>pom</type>
70         <scope>import</scope>
71       </dependency>
72     </dependencies>
73   </dependencyManagement>
74   <dependencies>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>sal-binding-api</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>sal-common-api</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>${project.groupId}</groupId>
85       <artifactId>features-ovsdb</artifactId>
86       <version>1.2.0-SNAPSHOT</version>
87       <classifier>features</classifier>
88       <type>xml</type>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.controller</groupId>
92       <artifactId>config-util</artifactId>
93     </dependency>
94     <!-- Dependencies for pax exam karaf container -->
95     <dependency>
96       <groupId>org.ops4j.pax.exam</groupId>
97       <artifactId>pax-exam-container-karaf</artifactId>
98       <scope>compile</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.ops4j.pax.exam</groupId>
102       <artifactId>pax-exam-junit4</artifactId>
103       <scope>compile</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.ops4j.pax.exam</groupId>
107       <artifactId>pax-exam</artifactId>
108       <scope>compile</scope>
109     </dependency>
110     <dependency>
111       <groupId>org.ops4j.pax.url</groupId>
112       <artifactId>pax-url-aether</artifactId>
113       <scope>compile</scope>
114     </dependency>
115     <dependency>
116       <groupId>javax.inject</groupId>
117       <artifactId>javax.inject</artifactId>
118       <version>1</version>
119       <scope>compile</scope>
120     </dependency>
121     <dependency>
122       <groupId>org.apache.karaf.features</groupId>
123       <artifactId>org.apache.karaf.features.core</artifactId>
124       <version>${karaf.version}</version>
125       <scope>compile</scope>
126     </dependency>
127     <dependency>
128       <groupId>org.osgi</groupId>
129       <artifactId>org.osgi.core</artifactId>
130       <scope>compile</scope>
131     </dependency>
132     <dependency>
133       <groupId>junit</groupId>
134       <artifactId>junit</artifactId>
135       <scope>compile</scope>
136     </dependency>
137     <dependency>
138       <groupId>org.codehaus.sonar-plugins.java</groupId>
139       <artifactId>sonar-jacoco-listeners</artifactId>
140       <version>${sonar-jacoco-listeners.version}</version>
141       <scope>test</scope>
142     </dependency>
143   </dependencies>
144   <build>
145     <plugins>
146       <plugin>
147         <groupId>org.apache.maven.plugins</groupId>
148         <artifactId>maven-failsafe-plugin</artifactId>
149         <configuration>
150           <!-- Specific to generate mapping between tests and covered code -->
151           <!--<argLine>${jacoco.agent.it.arg}</argLine>-->
152           <properties>
153             <property>
154               <name>listener</name>
155               <value>org.sonar.java.jacoco.JUnitListener</value>
156             </property>
157           </properties>
158           <!-- Let's put failsafe reports with surefire to have access to tests failures/success reports in sonar -->
159           <!--<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>-->
160         </configuration>
161         <executions>
162           <execution>
163             <goals>
164               <goal>integration-test</goal>
165               <goal>verify</goal>
166             </goals>
167             <configuration>
168               <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
169               <skipTests>${skip.integrationtest}</skipTests>
170             </configuration>
171           </execution>
172         </executions>
173       </plugin>
174       <!-- Needed if you use versionAsInProject() -->
175       <plugin>
176         <groupId>org.apache.servicemix.tooling</groupId>
177         <artifactId>depends-maven-plugin</artifactId>
178         <version>1.2</version>
179         <executions>
180           <execution>
181             <id>generate-depends-file</id>
182             <goals>
183               <goal>generate-depends-file</goal>
184             </goals>
185           </execution>
186         </executions>
187       </plugin>
188       <!--<plugin>
189         <groupId>org.apache.maven.plugins</groupId>
190         <artifactId>maven-checkstyle-plugin</artifactId>
191         <configuration>
192           <configLocation>
193             ${project.basedir}/../../commons/parent/src/main/resources/ovsdb_checks.xml
194           </configLocation>
195           <includeTestSourceDirectory>true</includeTestSourceDirectory>
196           <failsOnError>true</failsOnError>
197           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
198           <excludes>**/yang/</excludes>
199         </configuration>
200       </plugin>-->
201       <plugin>
202         <groupId>org.jacoco</groupId>
203         <artifactId>jacoco-maven-plugin</artifactId>
204         <executions>
205           <execution>
206             <id>prepare-ut-agent</id>
207             <goals>
208               <goal>prepare-agent</goal>
209             </goals>
210             <configuration>
211               <destFile>${sonar.jacoco.reportPath}</destFile>
212             </configuration>
213           </execution>
214           <execution>
215             <id>prepare-it-agent</id>
216             <goals>
217               <goal>prepare-agent-integration</goal>
218             </goals>
219             <configuration>
220               <append>true</append>
221               <destFile>${sonar.jacoco.itReportPath}</destFile>
222             </configuration>
223           </execution>
224           <execution>
225             <id>default-report</id>
226             <goals>
227               <goal>report</goal>
228             </goals>
229             <configuration>
230               <dataFile>${sonar.jacoco.reportPath}</dataFile>
231             </configuration>
232           </execution>
233           <execution>
234             <id>default-report-integration</id>
235             <goals>
236               <goal>report-integration</goal>
237             </goals>
238             <configuration>
239               <dataFile>${sonar.jacoco.itReportPath}</dataFile>
240             </configuration>
241           </execution>
242         </executions>
243       </plugin>
244       <plugin>
245         <groupId>org.apache.maven.plugins</groupId>
246         <artifactId>maven-surefire-plugin</artifactId>
247         <configuration>
248           <!-- Specific to generate mapping between tests and covered code -->
249           <!--<argLine>${jacoco.agent.ut.arg}</argLine>-->
250           <properties>
251             <property>
252               <name>listener</name>
253               <value>org.sonar.java.jacoco.JUnitListener</value>
254             </property>
255           </properties>
256           <!-- Let's put failsafe reports with surefire to have access to tests failures/success reports in sonar -->
257           <!--<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>-->
258         </configuration>
259       </plugin>
260     </plugins>
261   </build>
262   <profiles>
263     <profile>
264       <id>integrationtest</id>
265       <activation>
266         <activeByDefault>false</activeByDefault>
267       </activation>
268       <properties>
269         <skip.integrationtest>false</skip.integrationtest>
270       </properties>
271     </profile>
272   </profiles>
273 </project>