translator: remove dependency of neutron.spi
[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.5.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.netvirt</groupId>
22   <artifactId>openstack.net-virt</artifactId>
23   <version>1.3.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.7.0-SNAPSHOT</neutron.model.version>
48     <ovsdb.version>1.3.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</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</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       <version>1.10.19</version>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>org.powermock</groupId>
121       <artifactId>powermock-core</artifactId>
122       <scope>test</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.powermock</groupId>
126       <artifactId>powermock-module-junit4</artifactId>
127       <scope>test</scope>
128     </dependency>
129     <dependency>
130       <groupId>org.powermock</groupId>
131       <artifactId>powermock-api-mockito</artifactId>
132       <scope>test</scope>
133     </dependency>
134     <dependency>
135       <groupId>org.powermock</groupId>
136       <artifactId>powermock-api-support</artifactId>
137       <scope>test</scope>
138     </dependency>
139     <dependency>
140       <groupId>org.powermock</groupId>
141       <artifactId>powermock-reflect</artifactId>
142       <scope>test</scope>
143     </dependency>
144     <dependency>
145       <groupId>junit</groupId>
146       <artifactId>junit</artifactId>
147       <scope>test</scope>
148     </dependency>
149     <dependency>
150       <groupId>org.opendaylight.controller</groupId>
151       <artifactId>sal-binding-broker-impl</artifactId>
152       <type>test-jar</type>
153       <scope>test</scope>
154     </dependency>
155   </dependencies>
156   <build>
157     <plugins>
158       <plugin>
159         <groupId>org.apache.felix</groupId>
160         <artifactId>maven-bundle-plugin</artifactId>
161         <extensions>true</extensions>
162         <configuration>
163           <instructions>
164             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
165             <Embed-Transitive>true</Embed-Transitive>
166             <Export-Package>
167               org.opendaylight.netvirt.openstack.netvirt.translator,
168               org.opendaylight.netvirt.openstack.netvirt.translator.crud,
169               org.opendaylight.netvirt.openstack.netvirt.api,
170               org.opendaylight.netvirt.openstack.netvirt
171             </Export-Package>
172           </instructions>
173         </configuration>
174       </plugin>
175       <plugin>
176         <groupId>org.apache.maven.plugins</groupId>
177         <artifactId>maven-surefire-plugin</artifactId>
178         <configuration>
179           <properties>
180             <property>
181               <name>listener</name>
182               <value>org.sonar.java.jacoco.JUnitListener</value>
183             </property>
184           </properties>
185         </configuration>
186       </plugin>
187       <plugin>
188         <groupId>org.jacoco</groupId>
189         <artifactId>jacoco-maven-plugin</artifactId>
190         <executions>
191           <execution>
192             <id>default-instrument</id>
193             <goals>
194               <goal>instrument</goal>
195             </goals>
196           </execution>
197           <execution>
198             <id>default-restore-instrumented-classes</id>
199             <goals>
200               <goal>restore-instrumented-classes</goal>
201             </goals>
202           </execution>
203         </executions>
204       </plugin>
205     </plugins>
206   </build>
207
208   <!--
209       Maven Site Configuration
210
211       The following configuration is necessary for maven-site-plugin to
212       correctly identify the correct deployment path for OpenDaylight Maven
213       sites.
214   -->
215   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
216
217   <distributionManagement>
218     <site>
219       <id>opendaylight-site</id>
220       <url>${nexus.site.url}/${project.artifactId}/</url>
221     </site>
222   </distributionManagement>
223 </project>