Bump versions by 0.1.0 for next dev cycle
[netvirt.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.5.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.3.0-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.11.0-SNAPSHOT</liblldp.version>
48     <openflowplugin.version>0.3.0-SNAPSHOT</openflowplugin.version>
49     <powermock.version>1.6.4</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       <version>1.10.19</version>
153       <scope>test</scope>
154     </dependency>
155     <dependency>
156       <groupId>org.powermock</groupId>
157       <artifactId>powermock-core</artifactId>
158       <version>${powermock.version}</version>
159       <scope>test</scope>
160     </dependency>
161     <dependency>
162       <groupId>org.powermock</groupId>
163       <artifactId>powermock-module-junit4</artifactId>
164       <version>${powermock.version}</version>
165       <scope>test</scope>
166     </dependency>
167     <dependency>
168       <groupId>org.powermock</groupId>
169       <artifactId>powermock-api-mockito</artifactId>
170       <version>${powermock.version}</version>
171       <scope>test</scope>
172     </dependency>
173     <dependency>
174       <groupId>org.powermock</groupId>
175       <artifactId>powermock-api-support</artifactId>
176       <version>${powermock.version}</version>
177       <scope>test</scope>
178     </dependency>
179     <dependency>
180       <groupId>org.powermock</groupId>
181       <artifactId>powermock-reflect</artifactId>
182       <version>${powermock.version}</version>
183       <scope>test</scope>
184     </dependency>
185     <dependency>
186       <groupId>junit</groupId>
187       <artifactId>junit</artifactId>
188       <scope>test</scope>
189     </dependency>
190   </dependencies>
191
192   <build>
193     <plugins>
194       <plugin>
195         <groupId>org.apache.felix</groupId>
196         <artifactId>maven-bundle-plugin</artifactId>
197         <extensions>true</extensions>
198         <configuration>
199           <instructions>
200             <Embed-Dependency>utils.config,utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
201             <Embed-Transitive>true</Embed-Transitive>
202             <Export-Package>
203               org.opendaylight.ovsdb.openstack.netvirt.providers,
204               org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13
205             </Export-Package>
206           </instructions>
207         </configuration>
208       </plugin>
209       <plugin>
210         <groupId>org.apache.maven.plugins</groupId>
211         <artifactId>maven-surefire-plugin</artifactId>
212         <configuration>
213           <excludes>
214             <exclude>**/services/*Test.java</exclude>
215           </excludes>
216           <properties>
217             <property>
218               <name>listener</name>
219               <value>org.sonar.java.jacoco.JUnitListener</value>
220             </property>
221           </properties>
222         </configuration>
223       </plugin>
224       <plugin>
225         <groupId>org.jacoco</groupId>
226         <artifactId>jacoco-maven-plugin</artifactId>
227         <executions>
228           <execution>
229             <id>default-instrument</id>
230             <goals>
231               <goal>instrument</goal>
232             </goals>
233           </execution>
234           <execution>
235             <id>default-restore-instrumented-classes</id>
236             <goals>
237               <goal>restore-instrumented-classes</goal>
238             </goals>
239           </execution>
240         </executions>
241       </plugin>
242     </plugins>
243   </build>
244 </project>