Repository: flink Updated Branches: refs/heads/master 4b8f28825 -> 45df1b25b
[FLINK-4298] [storm compatibility] Add proper repository for Closure dependencies. Adds further dependency exlcusions for unneeded (and potentially conflicting) storm dependencies. Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/45df1b25 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/45df1b25 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/45df1b25 Branch: refs/heads/master Commit: 45df1b25bea45b45473e20a5ca28c457df303ecb Parents: 4b8f288 Author: Stephan Ewen <[email protected]> Authored: Mon Aug 1 19:50:19 2016 +0200 Committer: Stephan Ewen <[email protected]> Committed: Tue Aug 2 12:57:36 2016 +0200 ---------------------------------------------------------------------- flink-contrib/flink-storm/pom.xml | 35 ++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/45df1b25/flink-contrib/flink-storm/pom.xml ---------------------------------------------------------------------- diff --git a/flink-contrib/flink-storm/pom.xml b/flink-contrib/flink-storm/pom.xml index 0ac49db..50d0717 100644 --- a/flink-contrib/flink-storm/pom.xml +++ b/flink-contrib/flink-storm/pom.xml @@ -34,10 +34,19 @@ under the License. <packaging>jar</packaging> + <repositories> + <repository> + <id>clojars</id> + <url>https://clojars.org/repo/</url> + <releases><enabled>true</enabled></releases> + <snapshots><enabled>false</enabled></snapshots> + </repository> + </repositories> + <dependencies> - + <!-- core dependencies --> - + <dependency> <!-- Together with the dependency management section in flink-parent, this pins the Kryo version of transitive dependencies to the Flink Kryo version --> @@ -92,6 +101,28 @@ under the License. <groupId>org.jgrapht</groupId> <artifactId>jgrapht-core</artifactId> </exclusion> + <exclusion> + <groupId>compojure</groupId> + <artifactId>compojure</artifactId> + </exclusion> + <exclusion> + <groupId>com.esotericsoftware.reflectasm</groupId> + <artifactId>reflectasm</artifactId> + </exclusion> + <exclusion> + <groupId>com.twitter</groupId> + <artifactId>chill-java</artifactId> + </exclusion> + <exclusion> + <groupId>commons-fileupload</groupId> + <artifactId>commons-fileupload</artifactId> + </exclusion> + <exclusion> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </exclusion> + + </exclusions> </dependency>
