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 | <!-- |
| 3 | ~ Licensed to the Apache Software Foundation (ASF) under one |
| 4 | ~ or more contributor license agreements. See the NOTICE file |
| 5 | ~ distributed with this work for additional information |
| 6 | ~ regarding copyright ownership. The ASF licenses this file |
| 7 | ~ to you under the Apache License, Version 2.0 (the |
| 8 | ~ "License"); you may not use this file except in compliance |
| 9 | ~ with the License. You may obtain a copy of the License at |
| 10 | ~ |
| 11 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | ~ |
| 13 | ~ Unless required by applicable law or agreed to in writing, |
| 14 | ~ software distributed under the License is distributed on an |
| 15 | ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | ~ KIND, either express or implied. See the License for the |
| 17 | ~ specific language governing permissions and limitations |
| 18 | ~ under the License. |
| 19 | --> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 21 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | |
| 25 | <parent> |
| 26 | <groupId>org.onlab.onos</groupId> |
| 27 | <artifactId>onos-of</artifactId> |
| 28 | <version>1.0.0-SNAPSHOT</version> |
| 29 | <relativePath>../pom.xml</relativePath> |
| 30 | </parent> |
| 31 | |
| 32 | <artifactId>onos-of-api</artifactId> |
| 33 | <packaging>bundle</packaging> |
| 34 | |
| 35 | <description>ONOS OpenFlow controller subsystem API</description> |
| 36 | |
Yuta HIGUCHI | a8714e5 | 2014-09-24 00:38:01 -0700 | [diff] [blame] | 37 | <repositories> |
Yuta HIGUCHI | 7dbbabf | 2014-10-08 14:22:07 -0700 | [diff] [blame] | 38 | <!-- FIXME: for Loxigen + optical experimenter. Decide how to use Loxigen before release. --> |
Yuta HIGUCHI | a8714e5 | 2014-09-24 00:38:01 -0700 | [diff] [blame] | 39 | <repository> |
Yuta HIGUCHI | 7dbbabf | 2014-10-08 14:22:07 -0700 | [diff] [blame] | 40 | <id>onlab-temp</id> |
| 41 | <name>ON.lab temporary repository</name> |
| 42 | <url>http://mavenrepo.onlab.us:8081/nexus/content/repositories/releases</url> |
Yuta HIGUCHI | a8714e5 | 2014-09-24 00:38:01 -0700 | [diff] [blame] | 43 | </repository> |
| 44 | </repositories> |
| 45 | |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 46 | <dependencies> |
| 47 | <dependency> |
| 48 | <groupId>org.projectfloodlight</groupId> |
| 49 | <artifactId>openflowj</artifactId> |
Yuta HIGUCHI | 7dbbabf | 2014-10-08 14:22:07 -0700 | [diff] [blame] | 50 | <!-- FIXME once experimenter gets merged to upstream --> |
Praseed Balakrishnan | 6e6d66b | 2014-10-23 13:02:49 -0700 | [diff] [blame] | 51 | <version>0.3.8-optical_experimenter4</version> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>io.netty</groupId> |
| 55 | <artifactId>netty</artifactId> |
| 56 | <version>3.9.0.Final</version> |
| 57 | </dependency> |
| 58 | </dependencies> |
| 59 | |
| 60 | <build> |
| 61 | <plugins> |
| 62 | <plugin> |
| 63 | <groupId>org.apache.maven.plugins</groupId> |
| 64 | <artifactId>maven-shade-plugin</artifactId> |
| 65 | <version>2.3</version> |
| 66 | <configuration> |
| 67 | <artifactSet> |
| 68 | <excludes> |
| 69 | <exclude>io.netty:netty</exclude> |
| 70 | <exclude>com.google.guava:guava</exclude> |
| 71 | <exclude>org.slf4j:slfj-api</exclude> |
| 72 | <exclude>ch.qos.logback:logback-core</exclude> |
| 73 | <exclude>ch.qos.logback:logback-classic</exclude> |
| 74 | <exclude>com.google.code.findbugs:annotations</exclude> |
| 75 | </excludes> |
| 76 | </artifactSet> |
| 77 | </configuration> |
| 78 | <executions> |
| 79 | <execution> |
| 80 | <phase>package</phase> |
| 81 | <goals> |
| 82 | <goal>shade</goal> |
| 83 | </goals> |
| 84 | </execution> |
| 85 | </executions> |
| 86 | </plugin> |
| 87 | <plugin> |
| 88 | <groupId>org.apache.felix</groupId> |
| 89 | <artifactId>maven-bundle-plugin</artifactId> |
| 90 | <configuration> |
| 91 | <instructions> |
| 92 | <Export-Package> |
tom | 9c94c5b | 2014-09-17 13:14:42 -0700 | [diff] [blame] | 93 | org.onlab.onos.openflow.*,org.projectfloodlight.openflow.* |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 94 | </Export-Package> |
| 95 | </instructions> |
| 96 | </configuration> |
| 97 | </plugin> |
| 98 | </plugins> |
| 99 | </build> |
| 100 | |
| 101 | </project> |