Removed some unused files and dependencies.
[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.2.0-SNAPSHOT</version>
8     <relativePath>../commons/parent</relativePath>
9   </parent>
10
11   <artifactId>plugin</artifactId>
12   <version>1.0.0-SNAPSHOT</version>
13   <name>OpenDaylight OVSDB Plugin</name>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>ch.qos.logback</groupId>
19       <artifactId>logback-classic</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>ch.qos.logback</groupId>
23       <artifactId>logback-core</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>com.fasterxml.jackson.core</groupId>
27       <artifactId>jackson-annotations</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>com.fasterxml.jackson.core</groupId>
31       <artifactId>jackson-core</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.fasterxml.jackson.core</groupId>
35       <artifactId>jackson-databind</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>com.google.code.gson</groupId>
39       <artifactId>gson</artifactId>
40       <scope>compile</scope>
41     </dependency>
42     <dependency>
43       <groupId>com.google.guava</groupId>
44       <artifactId>guava</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>commons-codec</groupId>
48       <artifactId>commons-codec</artifactId>
49       <optional>true</optional>
50     </dependency>
51     <dependency>
52       <groupId>commons-collections</groupId>
53       <artifactId>commons-collections</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>commons-lang</groupId>
57       <artifactId>commons-lang</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>equinoxSDK381</groupId>
61       <artifactId>org.eclipse.osgi</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>io.netty</groupId>
65       <artifactId>netty-all</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>javax.portlet</groupId>
69       <artifactId>portlet-api</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>junit</groupId>
73       <artifactId>junit</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>clustering.services</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>sal</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>sal.connection</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>sal.networkconfiguration</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.ovsdb</groupId>
93       <artifactId>library</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.ovsdb</groupId>
97       <artifactId>schema.openvswitch</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.ovsdb</groupId>
101       <artifactId>schema.hardwarevtep</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.slf4j</groupId>
105       <artifactId>slf4j-api</artifactId>
106     </dependency>
107   </dependencies>
108
109   <build>
110     <testResources>
111       <testResource>
112         <filtering>true</filtering>
113         <directory>src/test/resources</directory>
114       </testResource>
115     </testResources>
116     <plugins>
117       <plugin>
118         <groupId>org.apache.felix</groupId>
119         <artifactId>maven-bundle-plugin</artifactId>
120         <version>2.3.6</version>
121         <extensions>true</extensions>
122         <configuration>
123           <instructions>
124             <Import-Package>
125               org.opendaylight.controller.sal.packet,
126               org.opendaylight.controller.sal.action,
127               org.opendaylight.controller.sal.discovery,
128               org.opendaylight.controller.sal.topology,
129               org.opendaylight.controller.sal.core,
130               org.opendaylight.controller.sal.flowprogrammer,
131               org.opendaylight.controller.sal.reader,
132               org.opendaylight.controller.sal.inventory,
133               org.opendaylight.controller.sal.match,
134               org.opendaylight.controller.sal.utils,
135               org.opendaylight.controller.sal.connection,
136               org.opendaylight.controller.clustering.services,
137               org.opendaylight.controller.sal.networkconfig.bridgedomain,
138               org.opendaylight.ovsdb.lib.error,
139               org.opendaylight.ovsdb.lib.notation,
140               org.opendaylight.ovsdb.lib.operations,
141               org.opendaylight.ovsdb.lib.message,
142               org.opendaylight.ovsdb.schema.openvswitch,
143               org.apache.commons.lang3.builder,
144               org.apache.commons.lang3.tuple,
145               org.apache.felix.dm,
146               org.slf4j,
147               org.eclipse.osgi.framework.console,
148               org.osgi.framework,
149               javax.net.ssl,
150               *
151             </Import-Package>
152             <Embed-Dependency>commons-codec,javax.servlet-api,portlet-api,commons-collections;type=!pom;inline=false</Embed-Dependency>
153             <Embed-Transitive>true</Embed-Transitive>
154             <Bundle-Activator>org.opendaylight.ovsdb.plugin.internal.Activator</Bundle-Activator>
155             <Private-Package>
156               org.opendaylight.ovsdb.plugin.impl,
157               org.opendaylight.ovsdb.plugin.internal
158             </Private-Package>
159             <Export-Package>
160               <!-- ToDo: Remove this line after the deprecated APIs have been removed -->
161               org.opendaylight.ovsdb.plugin,
162               org.opendaylight.ovsdb.plugin.api,
163               org.opendaylight.ovsdb.plugin.error
164             </Export-Package>
165           </instructions>
166           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
167         </configuration>
168       </plugin>
169       <plugin>
170         <groupId>org.apache.maven.plugins</groupId>
171         <artifactId>maven-checkstyle-plugin</artifactId>
172       </plugin>
173       <plugin>
174         <groupId>org.apache.maven.plugins</groupId>
175         <artifactId>maven-failsafe-plugin</artifactId>
176       </plugin>
177       <plugin>
178         <groupId>org.jacoco</groupId>
179         <artifactId>jacoco-maven-plugin</artifactId>
180       </plugin>
181     </plugins>
182   </build>
183   <scm>
184     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
185     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
186     <tag>HEAD</tag>
187     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
188   </scm>
189 </project>