Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 24c849c | 2014-10-27 09:53:05 -0700 | [diff] [blame] | 2 | <!-- |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 3 | ~ Copyright 2014 Open Networking Laboratory |
Thomas Vachuska | 24c849c | 2014-10-27 09:53:05 -0700 | [diff] [blame] | 4 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 5 | ~ 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 Vachuska | 24c849c | 2014-10-27 09:53:05 -0700 | [diff] [blame] | 8 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 9 | ~ 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 Vachuska | 24c849c | 2014-10-27 09:53:05 -0700 | [diff] [blame] | 16 | --> |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 17 | <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> |
| 23 | <groupId>org.onlab.onos</groupId> |
| 24 | <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 HIGUCHI | 0c1c100 | 2014-11-05 13:47:25 -0800 | [diff] [blame] | 40 | |
| 41 | <dependency> |
Madan Jampani | 9b37d57 | 2014-11-12 11:53:24 -0800 | [diff] [blame] | 42 | <groupId>net.jodah</groupId> |
| 43 | <artifactId>expiringmap</artifactId> |
| 44 | <version>0.3.1</version> |
| 45 | </dependency> |
| 46 | |
| 47 | <dependency> |
Yuta HIGUCHI | 0c1c100 | 2014-11-05 13:47:25 -0800 | [diff] [blame] | 48 | <groupId>net.kuujo.copycat</groupId> |
| 49 | <artifactId>copycat</artifactId> |
| 50 | <version>${copycat.version}</version> |
| 51 | </dependency> |
Madan Jampani | 9b37d57 | 2014-11-12 11:53:24 -0800 | [diff] [blame] | 52 | |
Yuta HIGUCHI | 0c1c100 | 2014-11-05 13:47:25 -0800 | [diff] [blame] | 53 | <dependency> |
| 54 | <groupId>net.kuujo.copycat</groupId> |
| 55 | <artifactId>copycat-tcp</artifactId> |
| 56 | <version>${copycat.version}</version> |
| 57 | </dependency> |
| 58 | |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 59 | </dependencies> |
| 60 | |
| 61 | <build> |
| 62 | <plugins> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.maven.plugins</groupId> |
| 65 | <artifactId>maven-shade-plugin</artifactId> |
| 66 | <version>2.3</version> |
| 67 | <configuration> |
| 68 | <filters> |
Yuta HIGUCHI | 0c1c100 | 2014-11-05 13:47:25 -0800 | [diff] [blame] | 69 | |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 70 | <filter> |
| 71 | <artifact>com.googlecode.concurrent-trees:concurrent-trees</artifact> |
| 72 | <includes> |
| 73 | <include>com/googlecode/**</include> |
| 74 | </includes> |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 75 | </filter> |
Yuta HIGUCHI | 0c1c100 | 2014-11-05 13:47:25 -0800 | [diff] [blame] | 76 | |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 77 | <filter> |
| 78 | <artifact>com.google.guava:guava</artifact> |
| 79 | <excludes> |
| 80 | <exclude>**</exclude> |
| 81 | </excludes> |
| 82 | </filter> |
Yuta HIGUCHI | 0c1c100 | 2014-11-05 13:47:25 -0800 | [diff] [blame] | 83 | |
| 84 | <filter> |
Madan Jampani | 9b37d57 | 2014-11-12 11:53:24 -0800 | [diff] [blame] | 85 | <artifact>net.jodah.expiringmap:*</artifact> |
| 86 | <includes> |
| 87 | <include>net/jodah/expiringmap/**</include> |
| 88 | </includes> |
| 89 | </filter> |
| 90 | |
| 91 | <filter> |
Yuta HIGUCHI | 0c1c100 | 2014-11-05 13:47:25 -0800 | [diff] [blame] | 92 | <artifact>net.kuujo.copycat:*</artifact> |
| 93 | <includes> |
| 94 | <include>net/kuujo/copycat/**</include> |
| 95 | </includes> |
| 96 | </filter> |
Yuta HIGUCHI | 0c1c100 | 2014-11-05 13:47:25 -0800 | [diff] [blame] | 97 | |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 98 | </filters> |
| 99 | </configuration> |
| 100 | <executions> |
| 101 | <execution> |
| 102 | <phase>package</phase> |
| 103 | <goals> |
| 104 | <goal>shade</goal> |
| 105 | </goals> |
| 106 | </execution> |
| 107 | </executions> |
Yuta HIGUCHI | 0c1c100 | 2014-11-05 13:47:25 -0800 | [diff] [blame] | 108 | </plugin> |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 109 | <plugin> |
| 110 | <groupId>org.apache.felix</groupId> |
| 111 | <artifactId>maven-bundle-plugin</artifactId> |
| 112 | <configuration> |
| 113 | <instructions> |
| 114 | <Export-Package> |
Madan Jampani | 9b37d57 | 2014-11-12 11:53:24 -0800 | [diff] [blame] | 115 | com.googlecode.concurrenttrees.*;net.kuujo.copycat.*;net.jodah.expiringmap.* |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 116 | </Export-Package> |
| 117 | </instructions> |
| 118 | </configuration> |
| 119 | </plugin> |
| 120 | </plugins> |
| 121 | </build> |
| 122 | |
| 123 | </project> |