Clean up pom files
[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.1-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     <powermock.version>1.5.2</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       <scope>test</scope>
128     </dependency>
129     <dependency>
130       <groupId>org.powermock</groupId>
131       <artifactId>powermock-core</artifactId>
132       <version>${powermock.version}</version>
133       <scope>test</scope>
134     </dependency>
135     <dependency>
136       <groupId>org.powermock</groupId>
137       <artifactId>powermock-module-junit4</artifactId>
138       <version>${powermock.version}</version>
139       <scope>test</scope>
140     </dependency>
141     <dependency>
142       <groupId>org.powermock</groupId>
143       <artifactId>powermock-api-mockito</artifactId>
144       <version>${powermock.version}</version>
145       <scope>test</scope>
146     </dependency>
147     <dependency>
148       <groupId>org.powermock</groupId>
149       <artifactId>powermock-api-support</artifactId>
150       <version>${powermock.version}</version>
151       <scope>test</scope>
152     </dependency>
153     <dependency>
154       <groupId>org.powermock</groupId>
155       <artifactId>powermock-reflect</artifactId>
156       <version>${powermock.version}</version>
157       <scope>test</scope>
158     </dependency>
159     <dependency>
160       <groupId>junit</groupId>
161       <artifactId>junit</artifactId>
162       <scope>test</scope>
163     </dependency>
164   </dependencies>
165   <build>
166     <plugins>
167       <plugin>
168         <groupId>org.apache.felix</groupId>
169         <artifactId>maven-bundle-plugin</artifactId>
170         <extensions>true</extensions>
171         <configuration>
172           <instructions>
173             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
174             <Embed-Transitive>true</Embed-Transitive>
175             <Export-Package>
176               org.opendaylight.ovsdb.openstack.netvirt.translator,
177               org.opendaylight.ovsdb.openstack.netvirt.api,
178               org.opendaylight.ovsdb.openstack.netvirt
179             </Export-Package>
180           </instructions>
181         </configuration>
182       </plugin>
183       <plugin>
184         <groupId>org.apache.maven.plugins</groupId>
185         <artifactId>maven-surefire-plugin</artifactId>
186         <configuration>
187           <properties>
188             <property>
189               <name>listener</name>
190               <value>org.sonar.java.jacoco.JUnitListener</value>
191             </property>
192           </properties>
193         </configuration>
194       </plugin>
195     </plugins>
196   </build>
197 </project>