Merge "Adding integration tests for Security Groups (fixed and default SG)"
[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.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>southbound-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>southbound-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>southbound-features</artifactId>
80       <classifier>features</classifier>
81       <type>xml</type>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>config-util</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>${project.groupId}</groupId>
89       <artifactId>utils.southbound-utils</artifactId>
90       <version>${project.version}</version>
91     </dependency>
92     <!-- Dependencies for pax exam karaf container -->
93     <dependency>
94       <groupId>org.ops4j.pax.exam</groupId>
95       <artifactId>pax-exam-container-karaf</artifactId>
96       <scope>compile</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.ops4j.pax.exam</groupId>
100       <artifactId>pax-exam-junit4</artifactId>
101       <scope>compile</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.ops4j.pax.exam</groupId>
105       <artifactId>pax-exam</artifactId>
106       <scope>compile</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.ops4j.pax.url</groupId>
110       <artifactId>pax-url-aether</artifactId>
111       <scope>compile</scope>
112     </dependency>
113     <dependency>
114       <groupId>javax.inject</groupId>
115       <artifactId>javax.inject</artifactId>
116       <version>1</version>
117       <scope>compile</scope>
118     </dependency>
119     <dependency>
120       <groupId>org.apache.karaf.features</groupId>
121       <artifactId>org.apache.karaf.features.core</artifactId>
122       <version>${karaf.version}</version>
123       <scope>compile</scope>
124     </dependency>
125     <dependency>
126       <groupId>org.osgi</groupId>
127       <artifactId>org.osgi.core</artifactId>
128       <scope>compile</scope>
129     </dependency>
130     <dependency>
131       <groupId>junit</groupId>
132       <artifactId>junit</artifactId>
133       <scope>compile</scope>
134     </dependency>
135     <dependency>
136       <groupId>org.slf4j</groupId>
137       <artifactId>slf4j-simple</artifactId>
138       <scope>test</scope>
139     </dependency>
140     <dependency>
141       <groupId>org.codehaus.sonar-plugins.java</groupId>
142       <artifactId>sonar-jacoco-listeners</artifactId>
143       <scope>test</scope>
144     </dependency>
145     <!-- AbstractConfigTestBase::getKarafDistro() needs this to find its version -->
146     <dependency>
147       <groupId>org.opendaylight.ovsdb</groupId>
148       <artifactId>southbound-karaf</artifactId>
149       <version>${project.version}</version>
150       <scope>test</scope>
151     </dependency>
152   </dependencies>
153   <build>
154     <plugins>
155       <plugin>
156         <groupId>org.jacoco</groupId>
157         <artifactId>jacoco-maven-plugin</artifactId>
158       </plugin>
159       <plugin>
160         <groupId>org.apache.maven.plugins</groupId>
161         <artifactId>maven-failsafe-plugin</artifactId>
162       </plugin>
163       <!-- Needed if you use versionAsInProject() -->
164       <plugin>
165         <groupId>org.apache.servicemix.tooling</groupId>
166         <artifactId>depends-maven-plugin</artifactId>
167         <version>1.2</version>
168         <executions>
169           <execution>
170             <id>generate-depends-file</id>
171             <goals>
172               <goal>generate-depends-file</goal>
173             </goals>
174           </execution>
175         </executions>
176       </plugin>
177       <plugin>
178         <groupId>org.apache.maven.plugins</groupId>
179         <artifactId>maven-checkstyle-plugin</artifactId>
180         <configuration>
181           <failsOnError>true</failsOnError>
182           <includeTestSourceDirectory>true</includeTestSourceDirectory>
183         </configuration>
184       </plugin>
185     </plugins>
186   </build>
187 </project>