Clean up pom files
[ovsdb.git] / openstack / net-virt-providers / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 Red Hat, 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <parent>
13     <groupId>org.opendaylight.controller</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.4.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18   <modelVersion>4.0.0</modelVersion>
19
20   <groupId>org.opendaylight.ovsdb</groupId>
21   <artifactId>openstack.net-virt-providers</artifactId>
22   <version>1.2.1-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <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>
25   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
26   <licenses>
27     <license>
28       <name>Eclipse Public License v1.0</name>
29       <url>http://www.eclipse.org/legal/epl-v10.html</url>
30     </license>
31   </licenses>
32   <developers>
33     <developer>
34       <name>Sam Hague</name>
35       <email>shague@gmail.com</email>
36       <url>https://github.com/shague</url>
37     </developer>
38   </developers>
39   <scm>
40     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
41     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
42     <tag>HEAD</tag>
43     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
44   </scm>
45
46   <properties>
47     <liblldp.version>0.10.0-SNAPSHOT</liblldp.version>
48     <openflowplugin.version>0.2.0-SNAPSHOT</openflowplugin.version>
49     <powermock.version>1.5.2</powermock.version>
50     <sonar.jacoco.itReportPath>../net-virt-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
51   </properties>
52
53   <dependencies>
54     <!-- project specific dependencies -->
55     <dependency>
56       <groupId>org.opendaylight.ovsdb</groupId>
57       <artifactId>openstack.net-virt</artifactId>
58       <version>${project.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.ovsdb</groupId>
62       <artifactId>utils.mdsal-openflow</artifactId>
63       <version>${project.version}</version>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.ovsdb</groupId>
67       <artifactId>southbound-api</artifactId>
68       <version>${project.version}</version>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.ovsdb</groupId>
72       <artifactId>utils.servicehelper</artifactId>
73       <version>${project.version}</version>
74     </dependency>
75     <!-- openflowplugin dependencies -->
76     <dependency>
77       <groupId>org.opendaylight.openflowplugin.model</groupId>
78       <artifactId>model-flow-base</artifactId>
79       <version>${openflowplugin.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.openflowplugin.model</groupId>
83       <artifactId>model-flow-service</artifactId>
84       <version>${openflowplugin.version}</version>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.openflowplugin</groupId>
88       <artifactId>openflowjava-extension-nicira</artifactId>
89       <version>${openflowplugin.version}</version>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.openflowplugin</groupId>
93       <artifactId>openflowplugin-extension-nicira</artifactId>
94       <version>${openflowplugin.version}</version>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.openflowplugin</groupId>
98       <artifactId>openflowplugin-api</artifactId>
99       <version>${openflowplugin.version}</version>
100     </dependency>
101     <!-- mdsal dependencies -->
102     <dependency>
103       <groupId>org.opendaylight.mdsal.model</groupId>
104       <artifactId>ietf-inet-types</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.mdsal.model</groupId>
108       <artifactId>ietf-yang-types</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.mdsal.model</groupId>
112       <artifactId>opendaylight-l2-types</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.mdsal.model</groupId>
116       <artifactId>ietf-topology</artifactId>
117     </dependency>
118     <!-- controller dependencies -->
119     <dependency>
120       <groupId>org.opendaylight.controller</groupId>
121       <artifactId>liblldp</artifactId>
122       <version>${liblldp.version}</version>
123     </dependency>
124     <!-- external dependencies -->
125     <dependency>
126       <groupId>com.google.code.findbugs</groupId>
127       <artifactId>jsr305</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>io.netty</groupId>
131       <artifactId>netty-buffer</artifactId>
132     </dependency>
133     <dependency>
134       <groupId>org.apache.commons</groupId>
135       <artifactId>commons-lang3</artifactId>
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     <dependency>
144       <groupId>org.slf4j</groupId>
145       <artifactId>slf4j-simple</artifactId>
146       <scope>test</scope>
147     </dependency>
148     <!-- testing dependencies -->
149     <dependency>
150       <groupId>org.mockito</groupId>
151       <artifactId>mockito-core</artifactId>
152       <scope>test</scope>
153     </dependency>
154     <dependency>
155       <groupId>org.powermock</groupId>
156       <artifactId>powermock-core</artifactId>
157       <version>${powermock.version}</version>
158       <scope>test</scope>
159     </dependency>
160     <dependency>
161       <groupId>org.powermock</groupId>
162       <artifactId>powermock-module-junit4</artifactId>
163       <version>${powermock.version}</version>
164       <scope>test</scope>
165     </dependency>
166     <dependency>
167       <groupId>org.powermock</groupId>
168       <artifactId>powermock-api-mockito</artifactId>
169       <version>${powermock.version}</version>
170       <scope>test</scope>
171     </dependency>
172     <dependency>
173       <groupId>org.powermock</groupId>
174       <artifactId>powermock-api-support</artifactId>
175       <version>${powermock.version}</version>
176       <scope>test</scope>
177     </dependency>
178     <dependency>
179       <groupId>org.powermock</groupId>
180       <artifactId>powermock-reflect</artifactId>
181       <version>${powermock.version}</version>
182       <scope>test</scope>
183     </dependency>
184     <dependency>
185       <groupId>junit</groupId>
186       <artifactId>junit</artifactId>
187       <scope>test</scope>
188     </dependency>
189   </dependencies>
190
191   <build>
192     <plugins>
193       <plugin>
194         <groupId>org.apache.felix</groupId>
195         <artifactId>maven-bundle-plugin</artifactId>
196         <extensions>true</extensions>
197         <configuration>
198           <instructions>
199             <Embed-Dependency>utils.config,utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
200             <Embed-Transitive>true</Embed-Transitive>
201             <Export-Package>
202               org.opendaylight.ovsdb.openstack.netvirt.providers,
203               org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13
204             </Export-Package>
205           </instructions>
206         </configuration>
207       </plugin>
208       <plugin>
209         <groupId>org.apache.maven.plugins</groupId>
210         <artifactId>maven-surefire-plugin</artifactId>
211         <configuration>
212           <excludes>
213             <exclude>**/services/*Test.java</exclude>
214           </excludes>
215           <properties>
216             <property>
217               <name>listener</name>
218               <value>org.sonar.java.jacoco.JUnitListener</value>
219             </property>
220           </properties>
221         </configuration>
222       </plugin>
223     </plugins>
224   </build>
225 </project>