Remove plugin dependencies
[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>openstack.net-virt</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.ovsdb</groupId>
87       <artifactId>schema.openvswitch</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.ovsdb</groupId>
91       <artifactId>utils.mdsal-node</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.ovsdb</groupId>
95       <artifactId>utils.mdsal-openflow</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.ovsdb</groupId>
99       <artifactId>utils.servicehelper</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.openflowplugin</groupId>
103       <artifactId>openflowjava-extension-nicira</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.openflowplugin</groupId>
107       <artifactId>openflowplugin-extension-nicira</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>org.slf4j</groupId>
111       <artifactId>slf4j-api</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>org.mockito</groupId>
115       <artifactId>mockito-core</artifactId>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>org.powermock</groupId>
120       <artifactId>powermock-core</artifactId>
121       <version>${powermock.version}</version>
122       <scope>test</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.powermock</groupId>
126       <artifactId>powermock-module-junit4</artifactId>
127       <scope>test</scope>
128     </dependency>
129     <dependency>
130       <groupId>org.powermock</groupId>
131       <artifactId>powermock-api-mockito</artifactId>
132       <scope>test</scope>
133     </dependency>
134     <dependency>
135       <groupId>junit</groupId>
136       <artifactId>junit</artifactId>
137       <scope>compile</scope>
138     </dependency>
139   </dependencies>
140
141   <build>
142     <plugins>
143       <plugin>
144         <groupId>org.apache.felix</groupId>
145         <artifactId>maven-bundle-plugin</artifactId>
146         <version>2.4.0</version>
147         <extensions>true</extensions>
148         <configuration>
149           <instructions>
150             <Import-Package>
151               !org.opendaylight.ovsdb.lib.osgi, *
152             </Import-Package>
153             <!--<Private-Package>
154               !org.opendaylight.ovsdb.lib.osgi,
155               org.opendaylight.ovsdb.lib.*,
156               org.opendaylight.ovsdb.schema.openvswitch
157             </Private-Package>-->
158             <Embed-Dependency>
159               utils.config,utils.mdsal-node,utils.mdsal-openflow;type=!pom;inline=false
160             </Embed-Dependency>
161             <Embed-Transitive>true</Embed-Transitive>
162             <Bundle-Activator>org.opendaylight.ovsdb.openstack.netvirt.providers.Activator</Bundle-Activator>
163           </instructions>
164         </configuration>
165       </plugin>
166       <plugin>
167         <groupId>org.apache.maven.plugins</groupId>
168         <artifactId>maven-checkstyle-plugin</artifactId>
169       </plugin>
170       <plugin>
171         <groupId>org.apache.maven.plugins</groupId>
172         <artifactId>maven-failsafe-plugin</artifactId>
173       </plugin>
174       <plugin>
175         <groupId>org.apache.maven.plugins</groupId>
176         <artifactId>maven-surefire-plugin</artifactId>
177       </plugin>
178       <plugin>
179         <groupId>org.jacoco</groupId>
180         <artifactId>jacoco-maven-plugin</artifactId>
181       </plugin>
182     </plugins>
183   </build>
184
185   <scm>
186     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
187     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
188     <tag>HEAD</tag>
189     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
190   </scm>
191
192 </project>