blob: efdba8390f27e91d95bcd5003764a86c9aa39a96 [file] [log] [blame]
tom7ef8ff92014-09-17 13:08:06 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska781d18b2014-10-27 10:31:25 -07002<!--
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 ~ Copyright 2014 Open Networking Laboratory
Thomas Vachuska781d18b2014-10-27 10:31:25 -07004 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07005 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
Thomas Vachuska781d18b2014-10-27 10:31:25 -07008 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07009 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
Thomas Vachuska781d18b2014-10-27 10:31:25 -070016 -->
tom7ef8ff92014-09-17 13:08:06 -070017<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
Brian O'Connorabafb502014-12-02 22:26:20 -080023 <groupId>org.onosproject</groupId>
tom7ef8ff92014-09-17 13:08:06 -070024 <artifactId>onos-of</artifactId>
Brian O'Connor6ea48a22015-03-17 20:07:20 -070025 <version>1.2.0-SNAPSHOT</version>
tom7ef8ff92014-09-17 13:08:06 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-of-api</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>ONOS OpenFlow controller subsystem API</description>
33
34 <dependencies>
35 <dependency>
Yuta HIGUCHI7dbbabf2014-10-08 14:22:07 -070036 <!-- FIXME once experimenter gets merged to upstream -->
Brian O'Connor932d9412014-12-03 17:20:11 -080037 <groupId>org.onosproject</groupId>
38 <artifactId>openflowj</artifactId>
39 <version>${openflowj.version}</version>
tom7ef8ff92014-09-17 13:08:06 -070040 </dependency>
41 <dependency>
42 <groupId>io.netty</groupId>
43 <artifactId>netty</artifactId>
tom7ef8ff92014-09-17 13:08:06 -070044 </dependency>
alshabibb452fd72015-04-22 20:46:20 -070045 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-api</artifactId>
48 </dependency>
49
tom7ef8ff92014-09-17 13:08:06 -070050 </dependencies>
51
52 <build>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-shade-plugin</artifactId>
57 <version>2.3</version>
58 <configuration>
59 <artifactSet>
60 <excludes>
61 <exclude>io.netty:netty</exclude>
62 <exclude>com.google.guava:guava</exclude>
63 <exclude>org.slf4j:slfj-api</exclude>
64 <exclude>ch.qos.logback:logback-core</exclude>
65 <exclude>ch.qos.logback:logback-classic</exclude>
66 <exclude>com.google.code.findbugs:annotations</exclude>
67 </excludes>
68 </artifactSet>
69 </configuration>
70 <executions>
71 <execution>
72 <phase>package</phase>
73 <goals>
74 <goal>shade</goal>
75 </goals>
76 </execution>
77 </executions>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>maven-bundle-plugin</artifactId>
82 <configuration>
83 <instructions>
84 <Export-Package>
Brian O'Connorabafb502014-12-02 22:26:20 -080085 org.onosproject.openflow.*,org.projectfloodlight.openflow.*
tom7ef8ff92014-09-17 13:08:06 -070086 </Export-Package>
87 </instructions>
88 </configuration>
89 </plugin>
90 </plugins>
91 </build>
92
93</project>