blob: afc2fafa3035d03f2b6116be1a5ca59eb0d652dd [file] [log] [blame]
tom7ef8ff92014-09-17 13:08:06 -07001<?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 HIGUCHIa8714e52014-09-24 00:38:01 -070019 <repositories>
Yuta HIGUCHI7dbbabf2014-10-08 14:22:07 -070020 <!-- FIXME: for Loxigen + optical experimenter. Decide how to use Loxigen before release. -->
Yuta HIGUCHIa8714e52014-09-24 00:38:01 -070021 <repository>
Yuta HIGUCHI7dbbabf2014-10-08 14:22:07 -070022 <id>onlab-temp</id>
23 <name>ON.lab temporary repository</name>
24 <url>http://mavenrepo.onlab.us:8081/nexus/content/repositories/releases</url>
Yuta HIGUCHIa8714e52014-09-24 00:38:01 -070025 </repository>
26 </repositories>
27
tom7ef8ff92014-09-17 13:08:06 -070028 <dependencies>
29 <dependency>
30 <groupId>org.projectfloodlight</groupId>
31 <artifactId>openflowj</artifactId>
Yuta HIGUCHI7dbbabf2014-10-08 14:22:07 -070032 <!-- FIXME once experimenter gets merged to upstream -->
33 <version>0.3.8-optical_experimenter</version>
tom7ef8ff92014-09-17 13:08:06 -070034 </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>
tom9c94c5b2014-09-17 13:14:42 -070075 org.onlab.onos.openflow.*,org.projectfloodlight.openflow.*
tom7ef8ff92014-09-17 13:08:06 -070076 </Export-Package>
77 </instructions>
78 </configuration>
79 </plugin>
80 </plugins>
81 </build>
82
83</project>