Add some debugging for vlan case
[ovsdb.git] / openstack / netvirt-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.3.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.ovsdb</groupId>
19   <artifactId>netvirt-it</artifactId>
20   <version>1.1.0-SNAPSHOT</version>
21   <packaging>jar</packaging>
22   <dependencyManagement>
23     <dependencies>
24       <dependency>
25         <groupId>${project.groupId}</groupId>
26         <artifactId>openstack.net-virt</artifactId>
27         <version>${project.version}</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31       <dependency>
32         <groupId>org.opendaylight.controller</groupId>
33         <artifactId>config-artifacts</artifactId>
34         <version>0.3.0-SNAPSHOT</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38       <dependency>
39         <groupId>org.opendaylight.controller</groupId>
40         <artifactId>mdsal-artifacts</artifactId>
41         <version>${mdsal.version}</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45     </dependencies>
46   </dependencyManagement>
47   <dependencies>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>sal-binding-api</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>sal-common-api</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>${project.groupId}</groupId>
58       <artifactId>features-ovsdb</artifactId>
59       <version>1.1.0-SNAPSHOT</version>
60       <classifier>features</classifier>
61       <type>xml</type>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>config-util</artifactId>
66     </dependency>
67     <!-- Dependencies for pax exam karaf container -->
68     <dependency>
69       <groupId>org.ops4j.pax.exam</groupId>
70       <artifactId>pax-exam-container-karaf</artifactId>
71       <scope>compile</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.ops4j.pax.exam</groupId>
75       <artifactId>pax-exam-junit4</artifactId>
76       <scope>compile</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.ops4j.pax.exam</groupId>
80       <artifactId>pax-exam</artifactId>
81       <scope>compile</scope>
82     </dependency>
83     <dependency>
84       <groupId>org.ops4j.pax.url</groupId>
85       <artifactId>pax-url-aether</artifactId>
86       <scope>compile</scope>
87     </dependency>
88     <dependency>
89       <groupId>javax.inject</groupId>
90       <artifactId>javax.inject</artifactId>
91       <version>1</version>
92       <scope>compile</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.apache.karaf.features</groupId>
96       <artifactId>org.apache.karaf.features.core</artifactId>
97       <version>${karaf.version}</version>
98       <scope>compile</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.osgi</groupId>
102       <artifactId>org.osgi.core</artifactId>
103       <scope>compile</scope>
104     </dependency>
105     <dependency>
106       <groupId>junit</groupId>
107       <artifactId>junit</artifactId>
108       <scope>compile</scope>
109     </dependency>
110     <dependency>
111       <groupId>org.apache.karaf.tooling</groupId>
112       <artifactId>karaf-maven-plugin</artifactId>
113       <version>${karaf.version}</version>
114     </dependency>
115     <dependency>
116       <groupId>${project.groupId}</groupId>
117       <artifactId>openstack.net-virt</artifactId>
118     </dependency>
119   </dependencies>
120   <build>
121     <plugins>
122       <plugin>
123         <groupId>org.apache.maven.plugins</groupId>
124         <artifactId>maven-failsafe-plugin</artifactId>
125         <executions>
126           <execution>
127             <goals>
128               <goal>integration-test</goal>
129               <goal>verify</goal>
130             </goals>
131           </execution>
132         </executions>
133       </plugin>
134       <!-- Needed if you use versionAsInProject() -->
135       <plugin>
136         <groupId>org.apache.servicemix.tooling</groupId>
137         <artifactId>depends-maven-plugin</artifactId>
138         <version>1.2</version>
139         <executions>
140           <execution>
141             <id>generate-depends-file</id>
142             <goals>
143               <goal>generate-depends-file</goal>
144             </goals>
145           </execution>
146         </executions>
147       </plugin>
148       <plugin>
149         <groupId>org.apache.maven.plugins</groupId>
150         <artifactId>maven-checkstyle-plugin</artifactId>
151         <configuration>
152           <configLocation>
153             ${project.basedir}/../../commons/parent/src/main/resources/ovsdb_checks.xml
154           </configLocation>
155           <includeTestSourceDirectory>true</includeTestSourceDirectory>
156           <failsOnError>true</failsOnError>
157           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
158           <excludes>**/yang/</excludes>
159         </configuration>
160       </plugin>
161       <plugin>
162         <groupId>org.jacoco</groupId>
163         <artifactId>jacoco-maven-plugin</artifactId>
164       </plugin>
165     </plugins>
166   </build>
167 </project>