Remove plugin dependencies
[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.ovsdb</groupId>
16     <artifactId>commons</artifactId>
17     <version>1.3.0-SNAPSHOT</version>
18     <relativePath>../../commons/parent</relativePath>
19   </parent>
20
21   <artifactId>openstack.net-virt</artifactId>
22   <version>1.1.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.apache.commons</groupId>
28       <artifactId>commons-lang3</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.apache.felix</groupId>
32       <artifactId>org.apache.felix.dependencymanager</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.osgi</groupId>
36       <artifactId>org.osgi.core</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.slf4j</groupId>
40       <artifactId>slf4j-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>com.google.guava</groupId>
44       <artifactId>guava</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal-binding-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.neutron</groupId>
52       <artifactId>neutron-spi</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.ovsdb</groupId>
56       <artifactId>library</artifactId>
57     </dependency>
58     <!--<dependency>
59       <groupId>org.opendaylight.ovsdb</groupId>
60       <artifactId>plugin</artifactId>
61     </dependency>-->
62     <dependency>
63       <groupId>org.opendaylight.ovsdb</groupId>
64       <artifactId>schema.openvswitch</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.ovsdb</groupId>
68       <artifactId>southbound-impl</artifactId>
69       <version>1.1.0-SNAPSHOT</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.ovsdb</groupId>
73       <artifactId>utils.config</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.ovsdb</groupId>
77       <artifactId>utils.mdsal-node</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.yangtools.model</groupId>
81       <artifactId>ietf-topology</artifactId>
82       <version>2013.10.21.7-SNAPSHOT</version>
83     </dependency>
84     <dependency>
85       <groupId>org.mockito</groupId>
86       <artifactId>mockito-core</artifactId>
87       <scope>test</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.powermock</groupId>
91       <artifactId>powermock-core</artifactId>
92       <version>${powermock.version}</version>
93       <scope>test</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.powermock</groupId>
97       <artifactId>powermock-module-junit4</artifactId>
98       <scope>test</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.powermock</groupId>
102       <artifactId>powermock-api-mockito</artifactId>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>junit</groupId>
107       <artifactId>junit</artifactId>
108       <scope>test</scope>
109     </dependency>
110   </dependencies>
111   <build>
112     <plugins>
113       <plugin>
114         <groupId>org.apache.felix</groupId>
115         <artifactId>maven-bundle-plugin</artifactId>
116         <version>2.4.0</version>
117         <extensions>true</extensions>
118         <configuration>
119           <instructions>
120             <Embed-Dependency>utils.config,utils.mdsal-node;type=!pom;inline=false</Embed-Dependency>
121             <Embed-Transitive>true</Embed-Transitive>
122             <Import-Package>
123               !org.opendaylight.ovsdb.lib.osgi, *
124             </Import-Package>
125             <Export-Package>
126               org.opendaylight.ovsdb.openstack.netvirt,
127               org.opendaylight.ovsdb.openstack.netvirt.api,
128               org.opendaylight.ovsdb.openstack.netvirt.impl
129             </Export-Package>
130             <Bundle-Activator>org.opendaylight.ovsdb.openstack.netvirt.Activator</Bundle-Activator>
131           </instructions>
132         </configuration>
133       </plugin>
134       <plugin>
135         <groupId>org.apache.maven.plugins</groupId>
136         <artifactId>maven-checkstyle-plugin</artifactId>
137       </plugin>
138       <plugin>
139         <groupId>org.apache.maven.plugins</groupId>
140         <artifactId>maven-failsafe-plugin</artifactId>
141       </plugin>
142       <plugin>
143         <groupId>org.apache.maven.plugins</groupId>
144         <artifactId>maven-surefire-plugin</artifactId>
145       </plugin>
146       <plugin>
147         <groupId>org.jacoco</groupId>
148         <artifactId>jacoco-maven-plugin</artifactId>
149       </plugin>
150     </plugins>
151   </build>
152
153   <scm>
154     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
155     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
156     <tag>HEAD</tag>
157     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
158   </scm>
159
160 </project>