Initial pass at changing groupId
[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.netvirt</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/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     <liblldp.version>0.11.0-SNAPSHOT</liblldp.version>
48     <openflowplugin.version>0.3.0-SNAPSHOT</openflowplugin.version>
49     <ovsdb.version>1.3.0-SNAPSHOT</ovsdb.version>
50     <sonar.jacoco.itReportPath>../net-virt-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
51   </properties>
52
53   <dependencies>
54     <dependency>
55       <groupId>org.opendaylight.netvirt</groupId>
56       <artifactId>openstack.net-virt</artifactId>
57       <version>${project.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.netvirt</groupId>
61       <artifactId>utils.mdsal-openflow</artifactId>
62       <version>${project.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.ovsdb</groupId>
66       <artifactId>southbound-api</artifactId>
67       <version>${ovsdb.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.netvirt</groupId>
71       <artifactId>utils.servicehelper</artifactId>
72       <version>${project.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.openflowplugin.model</groupId>
76       <artifactId>model-flow-base</artifactId>
77       <version>${openflowplugin.version}</version>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.openflowplugin.model</groupId>
81       <artifactId>model-flow-service</artifactId>
82       <version>${openflowplugin.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.openflowplugin</groupId>
86       <artifactId>openflowjava-extension-nicira</artifactId>
87       <version>${openflowplugin.version}</version>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.openflowplugin</groupId>
91       <artifactId>openflowplugin-extension-nicira</artifactId>
92       <version>${openflowplugin.version}</version>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.openflowplugin</groupId>
96       <artifactId>openflowplugin-api</artifactId>
97       <version>${openflowplugin.version}</version>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.mdsal.model</groupId>
101       <artifactId>ietf-inet-types</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.mdsal.model</groupId>
105       <artifactId>ietf-yang-types</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.mdsal.model</groupId>
109       <artifactId>opendaylight-l2-types</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>org.opendaylight.mdsal.model</groupId>
113       <artifactId>ietf-topology</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>org.opendaylight.controller</groupId>
117       <artifactId>liblldp</artifactId>
118       <version>${liblldp.version}</version>
119     </dependency>
120     <dependency>
121       <groupId>com.google.code.findbugs</groupId>
122       <artifactId>jsr305</artifactId>
123     </dependency>
124     <dependency>
125       <groupId>io.netty</groupId>
126       <artifactId>netty-buffer</artifactId>
127     </dependency>
128     <dependency>
129       <groupId>org.apache.commons</groupId>
130       <artifactId>commons-lang3</artifactId>
131     </dependency>
132     <dependency>
133       <groupId>org.codehaus.sonar-plugins.java</groupId>
134       <artifactId>sonar-jacoco-listeners</artifactId>
135       <version>${sonar-jacoco-listeners.version}</version>
136       <scope>test</scope>
137     </dependency>
138     <dependency>
139       <groupId>org.slf4j</groupId>
140       <artifactId>slf4j-simple</artifactId>
141       <scope>test</scope>
142     </dependency>
143     <dependency>
144       <groupId>org.mockito</groupId>
145       <artifactId>mockito-core</artifactId>
146       <version>1.10.19</version>
147       <scope>test</scope>
148     </dependency>
149     <dependency>
150       <groupId>org.powermock</groupId>
151       <artifactId>powermock-core</artifactId>
152       <scope>test</scope>
153     </dependency>
154     <dependency>
155       <groupId>org.powermock</groupId>
156       <artifactId>powermock-module-junit4</artifactId>
157       <scope>test</scope>
158     </dependency>
159     <dependency>
160       <groupId>org.powermock</groupId>
161       <artifactId>powermock-api-mockito</artifactId>
162       <scope>test</scope>
163     </dependency>
164     <dependency>
165       <groupId>org.powermock</groupId>
166       <artifactId>powermock-api-support</artifactId>
167       <scope>test</scope>
168     </dependency>
169     <dependency>
170       <groupId>org.powermock</groupId>
171       <artifactId>powermock-reflect</artifactId>
172       <scope>test</scope>
173     </dependency>
174     <dependency>
175       <groupId>junit</groupId>
176       <artifactId>junit</artifactId>
177       <scope>test</scope>
178     </dependency>
179   </dependencies>
180
181   <build>
182     <plugins>
183       <plugin>
184         <groupId>org.apache.felix</groupId>
185         <artifactId>maven-bundle-plugin</artifactId>
186         <extensions>true</extensions>
187         <configuration>
188           <instructions>
189             <Embed-Dependency>utils.config,utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
190             <Embed-Transitive>true</Embed-Transitive>
191             <Export-Package>
192               org.opendaylight.netvirt.openstack.netvirt.providers,
193               org.opendaylight.netvirt.openstack.netvirt.providers.openflow13,
194               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.netvirt.providers.config.rev160109
195             </Export-Package>
196           </instructions>
197         </configuration>
198       </plugin>
199       <plugin>
200         <groupId>org.apache.maven.plugins</groupId>
201         <artifactId>maven-surefire-plugin</artifactId>
202         <configuration>
203          <excludes>
204             <exclude>**/services/*Test.java</exclude>
205           </excludes>
206           <properties>
207             <property>
208               <name>listener</name>
209               <value>org.sonar.java.jacoco.JUnitListener</value>
210             </property>
211           </properties>
212         </configuration>
213       </plugin>
214       <plugin>
215         <groupId>org.jacoco</groupId>
216         <artifactId>jacoco-maven-plugin</artifactId>
217         <executions>
218           <execution>
219             <id>default-instrument</id>
220             <goals>
221               <goal>instrument</goal>
222             </goals>
223           </execution>
224           <execution>
225             <id>default-restore-instrumented-classes</id>
226             <goals>
227               <goal>restore-instrumented-classes</goal>
228             </goals>
229           </execution>
230         </executions>
231       </plugin>
232     </plugins>
233   </build>
234 </project>