tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 2 | <!-- |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 3 | ~ Copyright 2014 Open Networking Laboratory |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 4 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 5 | ~ 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 Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 8 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 9 | ~ 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 Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 16 | --> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 17 | <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'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 23 | <groupId>org.onosproject</groupId> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 24 | <artifactId>onos-of</artifactId> |
Brian O'Connor | 30a412d | 2015-05-21 18:04:26 -0700 | [diff] [blame] | 25 | <version>1.2.0-SNAPSHOT</version> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 26 | <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 HIGUCHI | 7dbbabf | 2014-10-08 14:22:07 -0700 | [diff] [blame] | 36 | <!-- FIXME once experimenter gets merged to upstream --> |
Brian O'Connor | 932d941 | 2014-12-03 17:20:11 -0800 | [diff] [blame] | 37 | <groupId>org.onosproject</groupId> |
| 38 | <artifactId>openflowj</artifactId> |
| 39 | <version>${openflowj.version}</version> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>io.netty</groupId> |
| 43 | <artifactId>netty</artifactId> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 44 | </dependency> |
alshabib | b452fd7 | 2015-04-22 20:46:20 -0700 | [diff] [blame] | 45 | <dependency> |
| 46 | <groupId>org.onosproject</groupId> |
| 47 | <artifactId>onos-api</artifactId> |
| 48 | </dependency> |
| 49 | |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 50 | </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'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 85 | org.onosproject.openflow.*,org.projectfloodlight.openflow.* |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 86 | </Export-Package> |
| 87 | </instructions> |
| 88 | </configuration> |
| 89 | </plugin> |
| 90 | </plugins> |
| 91 | </build> |
| 92 | |
| 93 | </project> |