Remove plugin projects dependency on ad-sal clustering.
[ovsdb.git] / plugin / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.ovsdb</groupId>
6     <artifactId>commons</artifactId>
7     <version>1.3.0-SNAPSHOT</version>
8     <relativePath>../commons/parent</relativePath>
9   </parent>
10
11   <artifactId>plugin</artifactId>
12   <version>1.1.0-SNAPSHOT</version>
13   <name>OpenDaylight OVSDB Plugin</name>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>com.fasterxml.jackson.core</groupId>
19       <artifactId>jackson-databind</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>com.google.guava</groupId>
23       <artifactId>guava</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>commons-collections</groupId>
27       <artifactId>commons-collections</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>equinoxSDK381</groupId>
31       <artifactId>org.eclipse.osgi</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>io.netty</groupId>
35       <artifactId>netty-all</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>junit</groupId>
39       <artifactId>junit</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.apache.felix</groupId>
44       <artifactId>org.apache.felix.dependencymanager</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>sal.connection</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>schema.openvswitch</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.ovsdb</groupId>
64       <artifactId>utils.config</artifactId>
65       <version>${ovsdb.utils.config.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>org.slf4j</groupId>
69       <artifactId>slf4j-api</artifactId>
70     </dependency>
71   </dependencies>
72
73   <build>
74     <testResources>
75       <testResource>
76         <filtering>true</filtering>
77         <directory>src/test/resources</directory>
78       </testResource>
79     </testResources>
80     <plugins>
81       <plugin>
82         <groupId>org.apache.felix</groupId>
83         <artifactId>maven-bundle-plugin</artifactId>
84         <version>2.4.0</version>
85         <extensions>true</extensions>
86         <configuration>
87           <instructions>
88             <Import-Package>
89               org.opendaylight.controller.sal.packet,
90               org.opendaylight.controller.sal.action,
91               org.opendaylight.controller.sal.discovery,
92               org.opendaylight.controller.sal.topology,
93               org.opendaylight.controller.sal.core,
94               org.opendaylight.controller.sal.flowprogrammer,
95               org.opendaylight.controller.sal.reader,
96               org.opendaylight.controller.sal.inventory,
97               org.opendaylight.controller.sal.match,
98               org.opendaylight.controller.sal.utils,
99               org.opendaylight.controller.sal.connection,
100               org.opendaylight.ovsdb.lib.error,
101               org.opendaylight.ovsdb.lib.notation,
102               org.opendaylight.ovsdb.lib.operations,
103               org.opendaylight.ovsdb.lib.message,
104               org.opendaylight.ovsdb.schema.openvswitch,
105               org.apache.commons.lang3.builder,
106               org.apache.commons.lang3.tuple,
107               org.apache.felix.dm,
108               org.slf4j,
109               org.eclipse.osgi.framework.console,
110               org.osgi.framework,
111               javax.net.ssl,
112               *
113             </Import-Package>
114             <Embed-Dependency>commons-codec,javax.servlet-api,portlet-api,commons-collections,utils.config;type=!pom;inline=false</Embed-Dependency>
115             <Embed-Transitive>true</Embed-Transitive>
116             <Bundle-Activator>org.opendaylight.ovsdb.plugin.internal.Activator</Bundle-Activator>
117             <Private-Package>
118               org.opendaylight.ovsdb.plugin.impl,
119               org.opendaylight.ovsdb.plugin.internal
120             </Private-Package>
121             <Export-Package>
122               org.opendaylight.ovsdb.plugin,
123               org.opendaylight.ovsdb.plugin.api,
124               org.opendaylight.ovsdb.plugin.error
125             </Export-Package>
126           </instructions>
127           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
128         </configuration>
129       </plugin>
130       <plugin>
131         <groupId>org.apache.maven.plugins</groupId>
132         <artifactId>maven-checkstyle-plugin</artifactId>
133       </plugin>
134       <plugin>
135         <groupId>org.apache.maven.plugins</groupId>
136         <artifactId>maven-failsafe-plugin</artifactId>
137       </plugin>
138       <plugin>
139         <groupId>org.jacoco</groupId>
140         <artifactId>jacoco-maven-plugin</artifactId>
141       </plugin>
142     </plugins>
143   </build>
144   <scm>
145     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
146     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
147     <tag>HEAD</tag>
148     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
149   </scm>
150 </project>