Merge "Init bundle files for ovs-sfc."
[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.apache.httpcomponents</groupId>
77       <artifactId>httpcore-nio</artifactId>
78       <optional>true</optional>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>clustering.services</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.controller</groupId>
86       <artifactId>sal</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.controller</groupId>
90       <artifactId>sal.connection</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>sal.networkconfiguration</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.ovsdb</groupId>
98       <artifactId>library</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.ovsdb</groupId>
102       <artifactId>schema.openvswitch</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.ovsdb</groupId>
106       <artifactId>schema.hardwarevtep</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>org.slf4j</groupId>
110       <artifactId>slf4j-api</artifactId>
111     </dependency>
112   </dependencies>
113
114   <build>
115     <testResources>
116       <testResource>
117         <filtering>true</filtering>
118         <directory>src/test/resources</directory>
119       </testResource>
120     </testResources>
121     <plugins>
122       <plugin>
123         <groupId>org.apache.felix</groupId>
124         <artifactId>maven-bundle-plugin</artifactId>
125         <version>2.3.6</version>
126         <extensions>true</extensions>
127         <configuration>
128           <instructions>
129             <Import-Package>org.opendaylight.controller.sal.packet,
130                             org.opendaylight.controller.sal.action,
131                             org.opendaylight.controller.sal.discovery,
132                             org.opendaylight.controller.sal.topology,
133                             org.opendaylight.controller.sal.core,
134                             org.opendaylight.controller.sal.flowprogrammer,
135                             org.opendaylight.controller.sal.reader,
136                             org.opendaylight.controller.sal.inventory,
137                             org.opendaylight.controller.sal.match,
138                             org.opendaylight.controller.sal.utils,
139                             org.opendaylight.controller.sal.connection,
140                             org.opendaylight.controller.clustering.services,
141                             org.opendaylight.controller.sal.networkconfig.bridgedomain,
142                             org.opendaylight.ovsdb.lib.error,
143                             org.opendaylight.ovsdb.lib.notation,
144                             org.opendaylight.ovsdb.lib.operations,
145                             org.opendaylight.ovsdb.lib.message,
146                             org.opendaylight.ovsdb.schema.openvswitch,
147                             org.apache.commons.lang3.builder,
148                             org.apache.commons.lang3.tuple,
149                             org.apache.felix.dm,
150                             org.slf4j,
151                             org.eclipse.osgi.framework.console,
152                             org.osgi.framework,
153                             javax.net.ssl,
154                             *</Import-Package>
155             <Embed-Dependency>httpclient,commons-codec,httpcore-nio,javax.servlet-api,portlet-api,commons-collections;type=!pom;inline=false</Embed-Dependency>
156             <Embed-Transitive>true</Embed-Transitive>
157             <Bundle-Activator>org.opendaylight.ovsdb.plugin.Activator</Bundle-Activator>
158             <Export-Package>org.opendaylight.ovsdb.plugin</Export-Package>
159           </instructions>
160           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
161         </configuration>
162       </plugin>
163       <plugin>
164         <groupId>org.apache.maven.plugins</groupId>
165         <artifactId>maven-checkstyle-plugin</artifactId>
166       </plugin>
167       <plugin>
168         <groupId>org.apache.maven.plugins</groupId>
169         <artifactId>maven-failsafe-plugin</artifactId>
170       </plugin>
171       <plugin>
172         <groupId>org.jacoco</groupId>
173         <artifactId>jacoco-maven-plugin</artifactId>
174       </plugin>
175     </plugins>
176   </build>
177   <scm>
178     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
179     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
180     <tag>HEAD</tag>
181     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
182   </scm>
183 </project>