Squashed commit of the following:
[ovsdb.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     <artifactId>commons</artifactId>
14     <groupId>org.opendaylight.ovsdb</groupId>
15     <version>1.3.0-SNAPSHOT</version>
16     <relativePath>../../commons/parent/pom.xml</relativePath>
17   </parent>
18   <modelVersion>4.0.0</modelVersion>
19
20   <artifactId>openstack.net-virt-providers</artifactId>
21   <version>1.1.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <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>
24   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
25   <licenses>
26     <license>
27       <name>Eclipse Public License v1.0</name>
28       <url>http://www.eclipse.org/legal/epl-v10.html</url>
29     </license>
30   </licenses>
31   <developers>
32     <developer>
33       <name>Sam Hague</name>
34       <email>shague@gmail.com</email>
35       <url>https://github.com/shague</url>
36     </developer>
37   </developers>
38   <scm>
39     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
40     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
41     <tag>HEAD</tag>
42     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
43   </scm>
44
45   <dependencies>
46     <dependency>
47       <groupId>org.apache.felix</groupId>
48       <artifactId>org.apache.felix.dependencymanager</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.osgi</groupId>
52       <artifactId>org.osgi.core</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>com.google.guava</groupId>
56       <artifactId>guava</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>sal-binding-api</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>sal-common-api</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.neutron</groupId>
68       <artifactId>neutron-spi</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.ovsdb</groupId>
72       <artifactId>openstack.net-virt</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.openflowplugin.model</groupId>
76       <artifactId>model-flow-base</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.openflowplugin.model</groupId>
80       <artifactId>model-flow-service</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller.model</groupId>
84       <artifactId>model-inventory</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.yangtools</groupId>
88       <artifactId>yang-binding</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.yangtools.model</groupId>
92       <artifactId>ietf-inet-types</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.yangtools.model</groupId>
96       <artifactId>ietf-yang-types</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.yangtools.model</groupId>
100       <artifactId>opendaylight-l2-types</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.ovsdb</groupId>
104       <artifactId>utils.mdsal-openflow</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.openflowplugin</groupId>
108       <artifactId>openflowjava-extension-nicira</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.openflowplugin</groupId>
112       <artifactId>openflowplugin-extension-nicira</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>org.slf4j</groupId>
116       <artifactId>slf4j-api</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>org.mockito</groupId>
120       <artifactId>mockito-core</artifactId>
121       <scope>test</scope>
122     </dependency>
123     <dependency>
124       <groupId>org.powermock</groupId>
125       <artifactId>powermock-core</artifactId>
126       <version>${powermock.version}</version>
127       <scope>test</scope>
128     </dependency>
129     <dependency>
130       <groupId>org.powermock</groupId>
131       <artifactId>powermock-module-junit4</artifactId>
132       <scope>test</scope>
133     </dependency>
134     <dependency>
135       <groupId>org.powermock</groupId>
136       <artifactId>powermock-api-mockito</artifactId>
137       <scope>test</scope>
138     </dependency>
139     <dependency>
140       <groupId>junit</groupId>
141       <artifactId>junit</artifactId>
142       <scope>test</scope>
143     </dependency>
144   </dependencies>
145
146   <build>
147     <plugins>
148       <plugin>
149         <groupId>org.apache.felix</groupId>
150         <artifactId>maven-bundle-plugin</artifactId>
151         <!--<version>2.4.0</version>-->
152         <extensions>true</extensions>
153         <configuration>
154           <instructions>
155             <!--<Import-Package>org.opendaylight.ovsdb.netvirt.api</Import-Package>-->
156             <Embed-Dependency>
157               utils.config,utils.mdsal-openflow;type=!pom;inline=false
158             </Embed-Dependency>
159             <Embed-Transitive>true</Embed-Transitive>
160             <Bundle-Activator>org.opendaylight.ovsdb.openstack.netvirt.providers.Activator</Bundle-Activator>
161           </instructions>
162         </configuration>
163       </plugin>
164       <plugin>
165         <groupId>org.apache.maven.plugins</groupId>
166         <artifactId>maven-checkstyle-plugin</artifactId>
167       </plugin>
168       <plugin>
169         <groupId>org.apache.maven.plugins</groupId>
170         <artifactId>maven-failsafe-plugin</artifactId>
171       </plugin>
172       <plugin>
173         <groupId>org.apache.maven.plugins</groupId>
174         <artifactId>maven-surefire-plugin</artifactId>
175       </plugin>
176       <plugin>
177         <groupId>org.jacoco</groupId>
178         <artifactId>jacoco-maven-plugin</artifactId>
179       </plugin>
180     </plugins>
181   </build>
182 </project>