blob: 28c6b5bc634b4357962257ab05c317eacd499e9b [file] [log] [blame]
Jonathan Hart335ef462014-10-16 08:20:46 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska24c849c2014-10-27 09:53:05 -07002<!--
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 ~ Copyright 2014 Open Networking Laboratory
Thomas Vachuska24c849c2014-10-27 09:53:05 -07004 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07005 ~ 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 Vachuska24c849c2014-10-27 09:53:05 -07008 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07009 ~ 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 Vachuska24c849c2014-10-27 09:53:05 -070016 -->
Jonathan Hart335ef462014-10-16 08:20:46 -070017<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'Connorabafb502014-12-02 22:26:20 -080023 <groupId>org.onosproject</groupId>
Jonathan Hart335ef462014-10-16 08:20:46 -070024 <artifactId>onlab-utils</artifactId>
25 <version>1.0.0-SNAPSHOT</version>
26 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onlab-thirdparty</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>ONLab third-party dependencies</description>
33
34 <dependencies>
35 <dependency>
36 <groupId>com.googlecode.concurrent-trees</groupId>
37 <artifactId>concurrent-trees</artifactId>
38 <version>2.4.0</version>
39 </dependency>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080040
41 <dependency>
Madan Jampani9b37d572014-11-12 11:53:24 -080042 <groupId>net.jodah</groupId>
43 <artifactId>expiringmap</artifactId>
44 <version>0.3.1</version>
45 </dependency>
46
47 <dependency>
Brian O'Connor932d9412014-12-03 17:20:11 -080048 <!-- FIXME once fixes get merged to upstream -->
49 <groupId>org.onosproject</groupId>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080050 <artifactId>copycat</artifactId>
51 <version>${copycat.version}</version>
52 </dependency>
Madan Jampani9b37d572014-11-12 11:53:24 -080053
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080054 <dependency>
Brian O'Connor932d9412014-12-03 17:20:11 -080055 <!-- FIXME once fixes get merged to upstream -->
56 <groupId>org.onosproject</groupId>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080057 <artifactId>copycat-tcp</artifactId>
58 <version>${copycat.version}</version>
59 </dependency>
60
Jonathan Hart335ef462014-10-16 08:20:46 -070061 </dependencies>
62
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-shade-plugin</artifactId>
68 <version>2.3</version>
69 <configuration>
70 <filters>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080071
Jonathan Hart335ef462014-10-16 08:20:46 -070072 <filter>
73 <artifact>com.googlecode.concurrent-trees:concurrent-trees</artifact>
74 <includes>
75 <include>com/googlecode/**</include>
76 </includes>
Jonathan Hart335ef462014-10-16 08:20:46 -070077 </filter>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080078
Jonathan Hart335ef462014-10-16 08:20:46 -070079 <filter>
80 <artifact>com.google.guava:guava</artifact>
81 <excludes>
82 <exclude>**</exclude>
83 </excludes>
84 </filter>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080085
86 <filter>
Madan Jampani9b37d572014-11-12 11:53:24 -080087 <artifact>net.jodah.expiringmap:*</artifact>
88 <includes>
89 <include>net/jodah/expiringmap/**</include>
90 </includes>
91 </filter>
92
93 <filter>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080094 <artifact>net.kuujo.copycat:*</artifact>
95 <includes>
96 <include>net/kuujo/copycat/**</include>
97 </includes>
98 </filter>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080099
Jonathan Hart335ef462014-10-16 08:20:46 -0700100 </filters>
101 </configuration>
102 <executions>
103 <execution>
104 <phase>package</phase>
105 <goals>
106 <goal>shade</goal>
107 </goals>
108 </execution>
109 </executions>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -0800110 </plugin>
Jonathan Hart335ef462014-10-16 08:20:46 -0700111 <plugin>
112 <groupId>org.apache.felix</groupId>
113 <artifactId>maven-bundle-plugin</artifactId>
114 <configuration>
115 <instructions>
116 <Export-Package>
Madan Jampani9b37d572014-11-12 11:53:24 -0800117 com.googlecode.concurrenttrees.*;net.kuujo.copycat.*;net.jodah.expiringmap.*
Jonathan Hart335ef462014-10-16 08:20:46 -0700118 </Export-Package>
119 </instructions>
120 </configuration>
121 </plugin>
122 </plugins>
123 </build>
124
125</project>