blob: 2ef71aeb8a724d905a66fda9fe50fc3520a48779 [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<!--
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 -->
tom7ef8ff92014-09-17 13:08:06 -070020<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 HIGUCHIa8714e52014-09-24 00:38:01 -070037 <repositories>
Yuta HIGUCHI7dbbabf2014-10-08 14:22:07 -070038 <!-- FIXME: for Loxigen + optical experimenter. Decide how to use Loxigen before release. -->
Yuta HIGUCHIa8714e52014-09-24 00:38:01 -070039 <repository>
Yuta HIGUCHI7dbbabf2014-10-08 14:22:07 -070040 <id>onlab-temp</id>
41 <name>ON.lab temporary repository</name>
42 <url>http://mavenrepo.onlab.us:8081/nexus/content/repositories/releases</url>
Yuta HIGUCHIa8714e52014-09-24 00:38:01 -070043 </repository>
44 </repositories>
45
tom7ef8ff92014-09-17 13:08:06 -070046 <dependencies>
47 <dependency>
48 <groupId>org.projectfloodlight</groupId>
49 <artifactId>openflowj</artifactId>
Yuta HIGUCHI7dbbabf2014-10-08 14:22:07 -070050 <!-- FIXME once experimenter gets merged to upstream -->
Praseed Balakrishnan6e6d66b2014-10-23 13:02:49 -070051 <version>0.3.8-optical_experimenter4</version>
tom7ef8ff92014-09-17 13:08:06 -070052 </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>
tom9c94c5b2014-09-17 13:14:42 -070093 org.onlab.onos.openflow.*,org.projectfloodlight.openflow.*
tom7ef8ff92014-09-17 13:08:06 -070094 </Export-Package>
95 </instructions>
96 </configuration>
97 </plugin>
98 </plugins>
99 </build>
100
101</project>