Bump versions by 0.1.0 for next dev cycle
[netvirt.git] / openstack / net-virt / 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   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.controller</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.6.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.netvirt</groupId>
22   <artifactId>openstack.net-virt</artifactId>
23   <version>1.4.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25   <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>
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/netvirt.git</connection>
41     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
42     <tag>HEAD</tag>
43     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
44   </scm>
45
46   <properties>
47     <neutron.model.version>0.8.0-SNAPSHOT</neutron.model.version>
48     <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
49     <sonar.jacoco.itReportPath>../net-virt-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
50   </properties>
51
52   <dependencies>
53     <dependency>
54       <groupId>org.opendaylight.ovsdb</groupId>
55       <artifactId>southbound-api</artifactId>
56       <version>${ovsdb.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>${project.groupId}</groupId>
60       <artifactId>utils.config</artifactId>
61       <version>${project.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>utils.servicehelper</artifactId>
66       <version>${project.version}</version>
67     </dependency>
68     <dependency>
69       <groupId>${project.groupId}</groupId>
70       <artifactId>utils.mdsal-utils</artifactId>
71       <version>${project.version}</version>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.neutron</groupId>
75       <artifactId>model</artifactId>
76       <version>${neutron.model.version}</version>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.mdsal.model</groupId>
80       <artifactId>ietf-inet-types-2013-07-15</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.mdsal.model</groupId>
84       <artifactId>ietf-topology</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.mdsal.model</groupId>
88       <artifactId>opendaylight-l2-types</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.mdsal.model</groupId>
92       <artifactId>ietf-yang-types-20130715</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.mdsal.model</groupId>
96       <artifactId>ietf-yang-types-20130715</artifactId>
97     </dependency>
98    <dependency>
99       <groupId>commons-net</groupId>
100       <artifactId>commons-net</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.codehaus.sonar-plugins.java</groupId>
104       <artifactId>sonar-jacoco-listeners</artifactId>
105       <version>${sonar-jacoco-listeners.version}</version>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.slf4j</groupId>
110       <artifactId>slf4j-simple</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>org.mockito</groupId>
115       <artifactId>mockito-core</artifactId>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>org.powermock</groupId>
120       <artifactId>powermock-core</artifactId>
121       <scope>test</scope>
122     </dependency>
123     <dependency>
124       <groupId>org.powermock</groupId>
125       <artifactId>powermock-module-junit4</artifactId>
126       <scope>test</scope>
127     </dependency>
128     <dependency>
129       <groupId>org.powermock</groupId>
130       <artifactId>powermock-api-mockito</artifactId>
131       <scope>test</scope>
132     </dependency>
133     <dependency>
134       <groupId>org.powermock</groupId>
135       <artifactId>powermock-api-support</artifactId>
136       <scope>test</scope>
137     </dependency>
138     <dependency>
139       <groupId>org.powermock</groupId>
140       <artifactId>powermock-reflect</artifactId>
141       <scope>test</scope>
142     </dependency>
143     <dependency>
144       <groupId>junit</groupId>
145       <artifactId>junit</artifactId>
146       <scope>test</scope>
147     </dependency>
148     <dependency>
149       <groupId>org.opendaylight.controller</groupId>
150       <artifactId>sal-binding-broker-impl</artifactId>
151       <type>test-jar</type>
152       <scope>test</scope>
153     </dependency>
154   </dependencies>
155   <build>
156     <plugins>
157       <plugin>
158         <groupId>org.apache.felix</groupId>
159         <artifactId>maven-bundle-plugin</artifactId>
160         <extensions>true</extensions>
161         <configuration>
162           <instructions>
163             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
164             <Embed-Transitive>true</Embed-Transitive>
165             <Export-Package>
166               org.opendaylight.netvirt.openstack.netvirt.translator,
167               org.opendaylight.netvirt.openstack.netvirt.translator.crud,
168               org.opendaylight.netvirt.openstack.netvirt.api,
169               org.opendaylight.netvirt.openstack.netvirt
170             </Export-Package>
171           </instructions>
172         </configuration>
173       </plugin>
174       <plugin>
175         <groupId>org.apache.maven.plugins</groupId>
176         <artifactId>maven-surefire-plugin</artifactId>
177         <configuration>
178           <properties>
179             <property>
180               <name>listener</name>
181               <value>org.sonar.java.jacoco.JUnitListener</value>
182             </property>
183           </properties>
184         </configuration>
185       </plugin>
186       <plugin>
187         <groupId>org.jacoco</groupId>
188         <artifactId>jacoco-maven-plugin</artifactId>
189         <executions>
190           <execution>
191             <id>default-instrument</id>
192             <goals>
193               <goal>instrument</goal>
194             </goals>
195           </execution>
196           <execution>
197             <id>default-restore-instrumented-classes</id>
198             <goals>
199               <goal>restore-instrumented-classes</goal>
200             </goals>
201           </execution>
202         </executions>
203       </plugin>
204     </plugins>
205   </build>
206
207   <!--
208       Maven Site Configuration
209
210       The following configuration is necessary for maven-site-plugin to
211       correctly identify the correct deployment path for OpenDaylight Maven
212       sites.
213   -->
214   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
215
216   <distributionManagement>
217     <site>
218       <id>opendaylight-site</id>
219       <url>${nexus.site.url}/${project.artifactId}/</url>
220     </site>
221   </distributionManagement>
222 </project>