Implement Neutron Network data change listener
[ovsdb.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.4.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>openstack.net-virt</artifactId>
23   <version>1.2.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   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
27   <licenses>
28     <license>
29       <name>Eclipse Public License v1.0</name>
30       <url>http://www.eclipse.org/legal/epl-v10.html</url>
31     </license>
32   </licenses>
33   <developers>
34     <developer>
35       <name>Sam Hague</name>
36       <email>shague@gmail.com</email>
37       <url>https://github.com/shague</url>
38     </developer>
39   </developers>
40   <scm>
41     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
42     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
43     <tag>HEAD</tag>
44     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
45   </scm>
46
47   <properties>
48     <neutron.model.version>0.6.0-SNAPSHOT</neutron.model.version>
49     <ovsdb.utils.config.version>1.2.0-SNAPSHOT</ovsdb.utils.config.version>
50     <ovsdb.utils.servicehelper.version>1.2.0-SNAPSHOT</ovsdb.utils.servicehelper.version>
51     <powermock.version>1.5.2</powermock.version>
52     <sonar-jacoco-listeners.version>2.4</sonar-jacoco-listeners.version>
53     <root.directory>${env.PWD}</root.directory>
54     <sonar.jacoco.itReportPath>${root.directory}/target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
55   </properties>
56   <dependencies>
57     <dependency>
58       <groupId>org.apache.commons</groupId>
59       <artifactId>commons-lang3</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.osgi</groupId>
63       <artifactId>org.osgi.core</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>com.google.guava</groupId>
67       <artifactId>guava</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>config-api</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>sal-binding-api</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>sal-binding-config</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>sal-common-api</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.ovsdb</groupId>
87       <artifactId>southbound-api</artifactId>
88       <version>1.2.0-SNAPSHOT</version>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.neutron</groupId>
92       <artifactId>model</artifactId>
93       <version>${neutron.model.version}</version>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.ovsdb</groupId>
97       <artifactId>utils.config</artifactId>
98       <version>${ovsdb.utils.config.version}</version>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.ovsdb</groupId>
102       <artifactId>utils.servicehelper</artifactId>
103       <version>${ovsdb.utils.servicehelper.version}</version>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.yangtools</groupId>
107       <artifactId>yang-common</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.yangtools</groupId>
111       <artifactId>concepts</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.yangtools.model</groupId>
115       <artifactId>ietf-inet-types</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>org.opendaylight.yangtools.model</groupId>
119       <artifactId>ietf-topology</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>org.opendaylight.yangtools.model</groupId>
123       <artifactId>opendaylight-l2-types</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.yangtools.model</groupId>
127       <artifactId>ietf-yang-types-20130715</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>org.opendaylight.yangtools.model</groupId>
131       <artifactId>ietf-yang-types</artifactId>
132     </dependency>
133     <dependency>
134       <groupId>commons-net</groupId>
135       <artifactId>commons-net</artifactId>
136     </dependency>
137     <dependency>
138       <groupId>org.slf4j</groupId>
139       <artifactId>slf4j-api</artifactId>
140     </dependency>
141     <dependency>
142       <groupId>org.mockito</groupId>
143       <artifactId>mockito-core</artifactId>
144       <scope>test</scope>
145     </dependency>
146     <dependency>
147       <groupId>org.powermock</groupId>
148       <artifactId>powermock-core</artifactId>
149       <version>${powermock.version}</version>
150       <scope>test</scope>
151     </dependency>
152     <dependency>
153       <groupId>org.powermock</groupId>
154       <artifactId>powermock-module-junit4</artifactId>
155       <version>${powermock.version}</version>
156       <scope>test</scope>
157     </dependency>
158     <dependency>
159       <groupId>org.powermock</groupId>
160       <artifactId>powermock-api-mockito</artifactId>
161       <version>${powermock.version}</version>
162       <scope>test</scope>
163     </dependency>
164     <dependency>
165       <groupId>org.powermock</groupId>
166       <artifactId>powermock-api-support</artifactId>
167       <version>${powermock.version}</version>
168       <scope>test</scope>
169     </dependency>
170     <dependency>
171       <groupId>org.powermock</groupId>
172       <artifactId>powermock-reflect</artifactId>
173       <version>${powermock.version}</version>
174       <scope>test</scope>
175     </dependency>
176     <dependency>
177       <groupId>junit</groupId>
178       <artifactId>junit</artifactId>
179       <scope>test</scope>
180     </dependency>
181     <dependency>
182       <groupId>org.codehaus.sonar-plugins.java</groupId>
183       <artifactId>sonar-jacoco-listeners</artifactId>
184       <version>${sonar-jacoco-listeners.version}</version>
185       <scope>test</scope>
186     </dependency>
187     <dependency>
188       <groupId>org.slf4j</groupId>
189       <artifactId>slf4j-simple</artifactId>
190       <scope>test</scope>
191     </dependency>
192   </dependencies>
193   <build>
194     <plugins>
195       <plugin>
196         <groupId>org.apache.felix</groupId>
197         <artifactId>maven-bundle-plugin</artifactId>
198         <extensions>true</extensions>
199         <configuration>
200           <instructions>
201             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
202             <Embed-Transitive>true</Embed-Transitive>
203             <Export-Package>
204               org.opendaylight.ovsdb.openstack.netvirt.translator,
205               org.opendaylight.ovsdb.openstack.netvirt.api,
206               org.opendaylight.ovsdb.openstack.netvirt
207             </Export-Package>
208           </instructions>
209         </configuration>
210       </plugin>
211       <plugin>
212         <groupId>org.apache.maven.plugins</groupId>
213         <artifactId>maven-checkstyle-plugin</artifactId>
214       </plugin>
215       <plugin>
216         <groupId>org.apache.maven.plugins</groupId>
217         <artifactId>maven-failsafe-plugin</artifactId>
218         <configuration>
219           <!-- Specific to generate mapping between tests and covered code -->
220           <!--<argLine>${jacoco.agent.it.arg}</argLine>-->
221           <properties>
222             <property>
223               <name>listener</name>
224               <value>org.sonar.java.jacoco.JUnitListener</value>
225             </property>
226           </properties>
227           <!-- Let's put failsafe reports with surefire to have access to tests failures/success reports in sonar -->
228           <!--<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>-->
229         </configuration>
230       </plugin>
231       <plugin>
232         <groupId>org.apache.maven.plugins</groupId>
233         <artifactId>maven-surefire-plugin</artifactId>
234         <configuration>
235           <!-- Specific to generate mapping between tests and covered code -->
236           <!--<argLine>${jacoco.agent.ut.arg}</argLine>-->
237           <properties>
238             <property>
239               <name>listener</name>
240               <value>org.sonar.java.jacoco.JUnitListener</value>
241             </property>
242           </properties>
243           <!-- Let's put failsafe reports with surefire to have access to tests failures/success reports in sonar -->
244           <!--<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>-->
245         </configuration>
246       </plugin>
247       <plugin>
248         <groupId>org.jacoco</groupId>
249         <artifactId>jacoco-maven-plugin</artifactId>
250         <executions>
251           <execution>
252             <id>prepare-ut-agent</id>
253             <goals>
254               <goal>prepare-agent</goal>
255             </goals>
256             <configuration>
257               <destFile>${sonar.jacoco.reportPath}</destFile>
258             </configuration>
259           </execution>
260           <execution>
261             <id>prepare-it-agent</id>
262             <goals>
263               <goal>prepare-agent-integration</goal>
264             </goals>
265             <configuration>
266               <append>true</append>
267               <destFile>${sonar.jacoco.itReportPath}</destFile>
268             </configuration>
269           </execution>
270           <execution>
271             <id>default-report</id>
272             <goals>
273               <goal>report</goal>
274             </goals>
275             <configuration>
276               <dataFile>${sonar.jacoco.reportPath}</dataFile>
277             </configuration>
278           </execution>
279           <execution>
280             <id>default-report-integration</id>
281             <goals>
282               <goal>report-integration</goal>
283             </goals>
284             <configuration>
285               <dataFile>${sonar.jacoco.itReportPath}</dataFile>
286             </configuration>
287           </execution>
288         </executions>
289       </plugin>
290     </plugins>
291   </build>
292   </project>