blob: 5a2e3bc1630dd3064f026adf48e3b50a304f5cd3 [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'Connor880dc20d2015-12-16 22:53:14 -080025 <version>1.5.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>
Jonathan Hart335ef462014-10-16 08:20:46 -070038 </dependency>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080039
Brian O'Connore79b0252015-09-04 15:55:03 -070040 <dependency>
Madan Jampani3289fbf2016-01-13 14:14:27 -080041 <groupId>commons-io</groupId>
42 <artifactId>commons-io</artifactId>
43 <version>${commons.io.version}</version>
44 </dependency>
45
46 <dependency>
47 <groupId>io.atomix</groupId>
48 <artifactId>atomix</artifactId>
49 <version>${atomix.version}</version>
50 </dependency>
51
52 <dependency>
Brian O'Connore79b0252015-09-04 15:55:03 -070053 <!-- FIXME once fixes get merged to upstream -->
54 <groupId>org.onosproject</groupId>
55 <artifactId>copycat-api</artifactId>
56 <version>${copycat.version}</version>
57 </dependency>
Madan Jampani9b37d572014-11-12 11:53:24 -080058
Brian O'Connore79b0252015-09-04 15:55:03 -070059 <dependency>
60 <!-- FIXME once fixes get merged to upstream -->
61 <groupId>org.onosproject</groupId>
62 <artifactId>copycat-core</artifactId>
63 <version>${copycat.version}</version>
64 </dependency>
Jonathan Hart335ef462014-10-16 08:20:46 -070065 </dependencies>
66
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-shade-plugin</artifactId>
Jonathan Hart335ef462014-10-16 08:20:46 -070072 <configuration>
HIGUCHI Yuta41ed8542015-04-20 14:17:02 -070073 <createSourcesJar>true</createSourcesJar>
74
75 <artifactSet>
76 <excludes>
77 <!-- exclude OSGi-ready transitive dependencies -->
78 <exclude>com.google.guava:guava</exclude>
79 <exclude>com.esotericsoftware:*</exclude>
80 <exclude>org.ow2.asm:asm</exclude>
81 <exclude>org.objenesis:objenesis</exclude>
82 <exclude>io.netty:*</exclude>
83 </excludes>
84 </artifactSet>
85
Jonathan Hart335ef462014-10-16 08:20:46 -070086 <filters>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080087
Jonathan Hart335ef462014-10-16 08:20:46 -070088 <filter>
89 <artifact>com.googlecode.concurrent-trees:concurrent-trees</artifact>
90 <includes>
91 <include>com/googlecode/**</include>
92 </includes>
Jonathan Hart335ef462014-10-16 08:20:46 -070093 </filter>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080094
Jonathan Hart335ef462014-10-16 08:20:46 -070095 <filter>
Madan Jampani3289fbf2016-01-13 14:14:27 -080096 <artifact>commons-io:commons-io</artifact>
97 <includes>
98 <include>org/apache/commons/io/**</include>
99 </includes>
100 </filter>
101
102 <filter>
Madan Jampanicb7ab082015-02-06 15:33:03 -0800103 <artifact>org.onosproject:copycat*</artifact>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -0800104 <includes>
Madan Jampani09342702015-02-05 23:32:40 -0800105 <include>**</include>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -0800106 </includes>
107 </filter>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -0800108
Madan Jampani3289fbf2016-01-13 14:14:27 -0800109 <filter>
110 <artifact>io.atomix:atomix-all</artifact>
111 <includes>
112 <include>**</include>
113 </includes>
114 </filter>
115
Jonathan Hart335ef462014-10-16 08:20:46 -0700116 </filters>
Madan Jampani3289fbf2016-01-13 14:14:27 -0800117 <transformers>
118 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
119 <resource>META-INF/services/io.atomix.catalyst.serializer.CatalystSerializable</resource>
120 </transformer>
121 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
122 <resource>META-INF/services/io.atomix.resource.Resource</resource>
123 </transformer>
124 </transformers>
Jonathan Hart335ef462014-10-16 08:20:46 -0700125 </configuration>
126 <executions>
127 <execution>
128 <phase>package</phase>
129 <goals>
130 <goal>shade</goal>
131 </goals>
132 </execution>
133 </executions>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -0800134 </plugin>
Jonathan Hart335ef462014-10-16 08:20:46 -0700135 <plugin>
136 <groupId>org.apache.felix</groupId>
137 <artifactId>maven-bundle-plugin</artifactId>
138 <configuration>
139 <instructions>
140 <Export-Package>
Thomas Vachuska0c409b42016-01-21 16:10:32 -0800141 com.googlecode.concurrenttrees.*;net.kuujo.copycat.*;io.atomix.*;org.apache.commons.io.*
Jonathan Hart335ef462014-10-16 08:20:46 -0700142 </Export-Package>
Madan Jampani3289fbf2016-01-13 14:14:27 -0800143 <Import-Package>
144 !sun.nio.ch,!sun.misc,*
145 </Import-Package>
Jonathan Hart335ef462014-10-16 08:20:46 -0700146 </instructions>
147 </configuration>
148 </plugin>
149 </plugins>
150 </build>
151
152</project>