blob: eb77eca3234651703e99389dc0c89e3da8690a03 [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
Madan Jampani94c23532015-02-05 17:40:01 -080034 <!-- TODO: Needed for copycat snapshot. Remove before official release -->
35 <repositories>
36 <repository>
37 <id>snapshots</id>
38 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
39 </repository>
40 </repositories>
41
Jonathan Hart335ef462014-10-16 08:20:46 -070042 <dependencies>
43 <dependency>
44 <groupId>com.googlecode.concurrent-trees</groupId>
45 <artifactId>concurrent-trees</artifactId>
46 <version>2.4.0</version>
47 </dependency>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080048
49 <dependency>
Madan Jampani9b37d572014-11-12 11:53:24 -080050 <groupId>net.jodah</groupId>
51 <artifactId>expiringmap</artifactId>
52 <version>0.3.1</version>
53 </dependency>
54
55 <dependency>
Brian O'Connor932d9412014-12-03 17:20:11 -080056 <!-- FIXME once fixes get merged to upstream -->
57 <groupId>org.onosproject</groupId>
Madan Jampani94c23532015-02-05 17:40:01 -080058 <artifactId>copycat-api</artifactId>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080059 <version>${copycat.version}</version>
60 </dependency>
Madan Jampani9b37d572014-11-12 11:53:24 -080061
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080062 <dependency>
Brian O'Connor932d9412014-12-03 17:20:11 -080063 <!-- FIXME once fixes get merged to upstream -->
64 <groupId>org.onosproject</groupId>
Madan Jampani94c23532015-02-05 17:40:01 -080065 <artifactId>copycat-netty</artifactId>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080066 <version>${copycat.version}</version>
67 </dependency>
68
Jonathan Hart335ef462014-10-16 08:20:46 -070069 </dependencies>
70
71 <build>
72 <plugins>
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-shade-plugin</artifactId>
76 <version>2.3</version>
77 <configuration>
78 <filters>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080079
Jonathan Hart335ef462014-10-16 08:20:46 -070080 <filter>
81 <artifact>com.googlecode.concurrent-trees:concurrent-trees</artifact>
82 <includes>
83 <include>com/googlecode/**</include>
84 </includes>
Jonathan Hart335ef462014-10-16 08:20:46 -070085 </filter>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080086
Jonathan Hart335ef462014-10-16 08:20:46 -070087 <filter>
88 <artifact>com.google.guava:guava</artifact>
89 <excludes>
90 <exclude>**</exclude>
91 </excludes>
92 </filter>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080093
94 <filter>
Madan Jampani9b37d572014-11-12 11:53:24 -080095 <artifact>net.jodah.expiringmap:*</artifact>
96 <includes>
97 <include>net/jodah/expiringmap/**</include>
98 </includes>
99 </filter>
100
101 <filter>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -0800102 <artifact>net.kuujo.copycat:*</artifact>
103 <includes>
104 <include>net/kuujo/copycat/**</include>
105 </includes>
106 </filter>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -0800107
Jonathan Hart335ef462014-10-16 08:20:46 -0700108 </filters>
109 </configuration>
110 <executions>
111 <execution>
112 <phase>package</phase>
113 <goals>
114 <goal>shade</goal>
115 </goals>
116 </execution>
117 </executions>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -0800118 </plugin>
Jonathan Hart335ef462014-10-16 08:20:46 -0700119 <plugin>
120 <groupId>org.apache.felix</groupId>
121 <artifactId>maven-bundle-plugin</artifactId>
122 <configuration>
123 <instructions>
124 <Export-Package>
Madan Jampani9b37d572014-11-12 11:53:24 -0800125 com.googlecode.concurrenttrees.*;net.kuujo.copycat.*;net.jodah.expiringmap.*
Jonathan Hart335ef462014-10-16 08:20:46 -0700126 </Export-Package>
127 </instructions>
128 </configuration>
129 </plugin>
130 </plugins>
131 </build>
132
133</project>