blob: 61adc1a3e55079a4b88dc3be49f3ffdd7b0d4d99 [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>
Brian O'Connor7f2e9bf2014-12-04 23:35:13 -080025 <version>1.1.0-SNAPSHOT</version>
Jonathan Hart335ef462014-10-16 08:20:46 -070026 <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>
Madan Jampani94c23532015-02-05 17:40:01 -080050 <artifactId>copycat-api</artifactId>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080051 <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>
Madan Jampanicb7ab082015-02-06 15:33:03 -080057 <artifactId>copycat-core</artifactId>
58 <version>${copycat.version}</version>
59 </dependency>
60
61 <dependency>
62 <!-- FIXME once fixes get merged to upstream -->
63 <groupId>org.onosproject</groupId>
Madan Jampani94c23532015-02-05 17:40:01 -080064 <artifactId>copycat-netty</artifactId>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080065 <version>${copycat.version}</version>
66 </dependency>
67
Jonathan Hart335ef462014-10-16 08:20:46 -070068 </dependencies>
69
70 <build>
71 <plugins>
72 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-shade-plugin</artifactId>
75 <version>2.3</version>
76 <configuration>
77 <filters>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080078
Jonathan Hart335ef462014-10-16 08:20:46 -070079 <filter>
80 <artifact>com.googlecode.concurrent-trees:concurrent-trees</artifact>
81 <includes>
82 <include>com/googlecode/**</include>
83 </includes>
Jonathan Hart335ef462014-10-16 08:20:46 -070084 </filter>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080085
Jonathan Hart335ef462014-10-16 08:20:46 -070086 <filter>
87 <artifact>com.google.guava:guava</artifact>
88 <excludes>
89 <exclude>**</exclude>
90 </excludes>
91 </filter>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080092
93 <filter>
Madan Jampani9b37d572014-11-12 11:53:24 -080094 <artifact>net.jodah.expiringmap:*</artifact>
95 <includes>
96 <include>net/jodah/expiringmap/**</include>
97 </includes>
98 </filter>
99
100 <filter>
Madan Jampanicb7ab082015-02-06 15:33:03 -0800101 <artifact>org.onosproject:copycat*</artifact>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -0800102 <includes>
103 <include>net/kuujo/copycat/**</include>
104 </includes>
105 </filter>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -0800106
Jonathan Hart335ef462014-10-16 08:20:46 -0700107 </filters>
108 </configuration>
109 <executions>
110 <execution>
111 <phase>package</phase>
112 <goals>
113 <goal>shade</goal>
114 </goals>
115 </execution>
116 </executions>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -0800117 </plugin>
Jonathan Hart335ef462014-10-16 08:20:46 -0700118 <plugin>
119 <groupId>org.apache.felix</groupId>
120 <artifactId>maven-bundle-plugin</artifactId>
121 <configuration>
122 <instructions>
123 <Export-Package>
Madan Jampani9b37d572014-11-12 11:53:24 -0800124 com.googlecode.concurrenttrees.*;net.kuujo.copycat.*;net.jodah.expiringmap.*
Jonathan Hart335ef462014-10-16 08:20:46 -0700125 </Export-Package>
126 </instructions>
127 </configuration>
128 </plugin>
129 </plugins>
130 </build>
131
132</project>