Merge "Patch to bring us into alignment with skip.karaf.featureTest from odlparent"
[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
24   <dependencies>
25     <dependency>
26       <groupId>org.apache.felix</groupId>
27       <artifactId>org.apache.felix.dependencymanager</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.osgi</groupId>
31       <artifactId>org.osgi.core</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.google.guava</groupId>
35       <artifactId>guava</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.neutron</groupId>
39       <artifactId>neutron-spi</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>sal-common-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal-binding-api</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.openflowplugin.model</groupId>
51       <artifactId>model-flow-base</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.openflowplugin.model</groupId>
55       <artifactId>model-flow-service</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller.model</groupId>
59       <artifactId>model-inventory</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.yangtools</groupId>
63       <artifactId>yang-binding</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.yangtools.model</groupId>
67       <artifactId>ietf-inet-types</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.yangtools.model</groupId>
71       <artifactId>ietf-yang-types</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.yangtools.model</groupId>
75       <artifactId>opendaylight-l2-types</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.ovsdb</groupId>
79       <artifactId>library</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.ovsdb</groupId>
83       <artifactId>plugin</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.ovsdb</groupId>
87       <artifactId>openstack.net-virt</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.ovsdb</groupId>
91       <artifactId>schema.openvswitch</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.ovsdb</groupId>
95       <artifactId>utils.mdsal-node</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.ovsdb</groupId>
99       <artifactId>utils.mdsal-openflow</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.ovsdb</groupId>
103       <artifactId>utils.servicehelper</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.openflowplugin</groupId>
107       <artifactId>openflowjava-extension-nicira</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.openflowplugin</groupId>
111       <artifactId>openflowplugin-extension-nicira</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>org.slf4j</groupId>
115       <artifactId>slf4j-api</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>junit</groupId>
119       <artifactId>junit</artifactId>
120       <scope>compile</scope>
121     </dependency>
122   </dependencies>
123
124   <build>
125     <plugins>
126       <plugin>
127         <groupId>org.apache.felix</groupId>
128         <artifactId>maven-bundle-plugin</artifactId>
129         <version>2.4.0</version>
130         <extensions>true</extensions>
131         <configuration>
132           <instructions>
133             <Embed-Dependency>
134               utils.config,utils.mdsal-node,utils.mdsal-openflow;type=!pom;inline=false
135             </Embed-Dependency>
136             <Embed-Transitive>true</Embed-Transitive>
137             <Bundle-Activator>org.opendaylight.ovsdb.openstack.netvirt.providers.Activator</Bundle-Activator>
138           </instructions>
139         </configuration>
140       </plugin>
141       <plugin>
142         <groupId>org.apache.maven.plugins</groupId>
143         <artifactId>maven-checkstyle-plugin</artifactId>
144       </plugin>
145       <plugin>
146         <groupId>org.apache.maven.plugins</groupId>
147         <artifactId>maven-failsafe-plugin</artifactId>
148       </plugin>
149       <plugin>
150         <groupId>org.apache.maven.plugins</groupId>
151         <artifactId>maven-surefire-plugin</artifactId>
152       </plugin>
153       <plugin>
154         <groupId>org.jacoco</groupId>
155         <artifactId>jacoco-maven-plugin</artifactId>
156       </plugin>
157     </plugins>
158   </build>
159
160   <scm>
161     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
162     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
163     <tag>HEAD</tag>
164     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
165   </scm>
166
167 </project>