tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>org.onlab.onos</groupId> |
| 9 | <artifactId>onos-of</artifactId> |
| 10 | <version>1.0.0-SNAPSHOT</version> |
| 11 | <relativePath>../pom.xml</relativePath> |
| 12 | </parent> |
| 13 | |
| 14 | <artifactId>onos-of-api</artifactId> |
| 15 | <packaging>bundle</packaging> |
| 16 | |
| 17 | <description>ONOS OpenFlow controller subsystem API</description> |
| 18 | |
Yuta HIGUCHI | a8714e5 | 2014-09-24 00:38:01 -0700 | [diff] [blame] | 19 | <repositories> |
Yuta HIGUCHI | 7dbbabf | 2014-10-08 14:22:07 -0700 | [diff] [blame] | 20 | <!-- FIXME: for Loxigen + optical experimenter. Decide how to use Loxigen before release. --> |
Yuta HIGUCHI | a8714e5 | 2014-09-24 00:38:01 -0700 | [diff] [blame] | 21 | <repository> |
Yuta HIGUCHI | 7dbbabf | 2014-10-08 14:22:07 -0700 | [diff] [blame] | 22 | <id>onlab-temp</id> |
| 23 | <name>ON.lab temporary repository</name> |
| 24 | <url>http://mavenrepo.onlab.us:8081/nexus/content/repositories/releases</url> |
Yuta HIGUCHI | a8714e5 | 2014-09-24 00:38:01 -0700 | [diff] [blame] | 25 | </repository> |
| 26 | </repositories> |
| 27 | |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 28 | <dependencies> |
| 29 | <dependency> |
| 30 | <groupId>org.projectfloodlight</groupId> |
| 31 | <artifactId>openflowj</artifactId> |
Yuta HIGUCHI | 7dbbabf | 2014-10-08 14:22:07 -0700 | [diff] [blame] | 32 | <!-- FIXME once experimenter gets merged to upstream --> |
Praseed Balakrishnan | 6e6d66b | 2014-10-23 13:02:49 -0700 | [diff] [blame] | 33 | <version>0.3.8-optical_experimenter4</version> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>io.netty</groupId> |
| 37 | <artifactId>netty</artifactId> |
| 38 | <version>3.9.0.Final</version> |
| 39 | </dependency> |
| 40 | </dependencies> |
| 41 | |
| 42 | <build> |
| 43 | <plugins> |
| 44 | <plugin> |
| 45 | <groupId>org.apache.maven.plugins</groupId> |
| 46 | <artifactId>maven-shade-plugin</artifactId> |
| 47 | <version>2.3</version> |
| 48 | <configuration> |
| 49 | <artifactSet> |
| 50 | <excludes> |
| 51 | <exclude>io.netty:netty</exclude> |
| 52 | <exclude>com.google.guava:guava</exclude> |
| 53 | <exclude>org.slf4j:slfj-api</exclude> |
| 54 | <exclude>ch.qos.logback:logback-core</exclude> |
| 55 | <exclude>ch.qos.logback:logback-classic</exclude> |
| 56 | <exclude>com.google.code.findbugs:annotations</exclude> |
| 57 | </excludes> |
| 58 | </artifactSet> |
| 59 | </configuration> |
| 60 | <executions> |
| 61 | <execution> |
| 62 | <phase>package</phase> |
| 63 | <goals> |
| 64 | <goal>shade</goal> |
| 65 | </goals> |
| 66 | </execution> |
| 67 | </executions> |
| 68 | </plugin> |
| 69 | <plugin> |
| 70 | <groupId>org.apache.felix</groupId> |
| 71 | <artifactId>maven-bundle-plugin</artifactId> |
| 72 | <configuration> |
| 73 | <instructions> |
| 74 | <Export-Package> |
tom | 9c94c5b | 2014-09-17 13:14:42 -0700 | [diff] [blame] | 75 | org.onlab.onos.openflow.*,org.projectfloodlight.openflow.* |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 76 | </Export-Package> |
| 77 | </instructions> |
| 78 | </configuration> |
| 79 | </plugin> |
| 80 | </plugins> |
| 81 | </build> |
| 82 | |
| 83 | </project> |