73fa3c68541b71d2dee342d3c146bae1c67e9ad6
[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.5.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</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   <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.7.0-SNAPSHOT</neutron.model.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>${project.groupId}</groupId>
57       <artifactId>southbound-api</artifactId>
58       <version>${project.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>${project.groupId}</groupId>
62       <artifactId>utils.config</artifactId>
63       <version>${project.version}</version>
64     </dependency>
65     <dependency>
66       <groupId>${project.groupId}</groupId>
67       <artifactId>utils.servicehelper</artifactId>
68       <version>${project.version}</version>
69     </dependency>
70     <dependency>
71       <groupId>${project.groupId}</groupId>
72       <artifactId>utils.mdsal-utils</artifactId>
73       <version>${project.version}</version>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>utils.neutron-utils</artifactId>
78       <version>${project.version}</version>
79     </dependency>
80     <!-- neutron dependencies -->
81     <dependency>
82       <groupId>org.opendaylight.neutron</groupId>
83       <artifactId>model</artifactId>
84       <version>${neutron.model.version}</version>
85     </dependency>
86     <!-- mdsal dependencies -->
87     <dependency>
88       <groupId>org.opendaylight.mdsal.model</groupId>
89       <artifactId>ietf-inet-types</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.mdsal.model</groupId>
93       <artifactId>ietf-topology</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.mdsal.model</groupId>
97       <artifactId>opendaylight-l2-types</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.mdsal.model</groupId>
101       <artifactId>ietf-yang-types-20130715</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.mdsal.model</groupId>
105       <artifactId>ietf-yang-types</artifactId>
106     </dependency>
107     <!-- external dependencies -->
108    <dependency>
109       <groupId>commons-net</groupId>
110       <artifactId>commons-net</artifactId>
111     </dependency>
112     <dependency>
113       <groupId>org.codehaus.sonar-plugins.java</groupId>
114       <artifactId>sonar-jacoco-listeners</artifactId>
115       <version>${sonar-jacoco-listeners.version}</version>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>org.slf4j</groupId>
120       <artifactId>slf4j-simple</artifactId>
121       <scope>test</scope>
122     </dependency>
123     <!-- testing dependencies -->
124     <dependency>
125       <groupId>org.mockito</groupId>
126       <artifactId>mockito-core</artifactId>
127       <version>1.10.19</version>
128       <scope>test</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.powermock</groupId>
132       <artifactId>powermock-core</artifactId>
133       <version>${powermock.version}</version>
134       <scope>test</scope>
135     </dependency>
136     <dependency>
137       <groupId>org.powermock</groupId>
138       <artifactId>powermock-module-junit4</artifactId>
139       <version>${powermock.version}</version>
140       <scope>test</scope>
141     </dependency>
142     <dependency>
143       <groupId>org.powermock</groupId>
144       <artifactId>powermock-api-mockito</artifactId>
145       <version>${powermock.version}</version>
146       <scope>test</scope>
147     </dependency>
148     <dependency>
149       <groupId>org.powermock</groupId>
150       <artifactId>powermock-api-support</artifactId>
151       <version>${powermock.version}</version>
152       <scope>test</scope>
153     </dependency>
154     <dependency>
155       <groupId>org.powermock</groupId>
156       <artifactId>powermock-reflect</artifactId>
157       <version>${powermock.version}</version>
158       <scope>test</scope>
159     </dependency>
160     <dependency>
161       <groupId>junit</groupId>
162       <artifactId>junit</artifactId>
163       <scope>test</scope>
164     </dependency>
165     <dependency>
166       <groupId>org.opendaylight.controller</groupId>
167       <artifactId>sal-binding-broker-impl</artifactId>
168       <version>1.3.0-SNAPSHOT</version>
169       <type>test-jar</type>
170       <scope>test</scope>
171     </dependency>
172   </dependencies>
173   <build>
174     <plugins>
175       <plugin>
176         <groupId>org.apache.felix</groupId>
177         <artifactId>maven-bundle-plugin</artifactId>
178         <extensions>true</extensions>
179         <configuration>
180           <instructions>
181             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
182             <Embed-Transitive>true</Embed-Transitive>
183             <Export-Package>
184               org.opendaylight.ovsdb.openstack.netvirt.translator,
185               org.opendaylight.ovsdb.openstack.netvirt.api,
186               org.opendaylight.ovsdb.openstack.netvirt
187             </Export-Package>
188           </instructions>
189         </configuration>
190       </plugin>
191       <plugin>
192         <groupId>org.apache.maven.plugins</groupId>
193         <artifactId>maven-surefire-plugin</artifactId>
194         <configuration>
195           <properties>
196             <property>
197               <name>listener</name>
198               <value>org.sonar.java.jacoco.JUnitListener</value>
199             </property>
200           </properties>
201         </configuration>
202       </plugin>
203       <plugin>
204         <groupId>org.jacoco</groupId>
205         <artifactId>jacoco-maven-plugin</artifactId>
206         <executions>
207           <execution>
208             <id>default-instrument</id>
209             <goals>
210               <goal>instrument</goal>
211             </goals>
212           </execution>
213           <execution>
214             <id>default-restore-instrumented-classes</id>
215             <goals>
216               <goal>restore-instrumented-classes</goal>
217             </goals>
218           </execution>
219         </executions>
220       </plugin>
221     </plugins>
222   </build>
223 </project>