[
https://issues.apache.org/jira/browse/FLINK-4409?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15424234#comment-15424234
]
ASF GitHub Bot commented on FLINK-4409:
---------------------------------------
GitHub user StephanEwen opened a pull request:
https://github.com/apache/flink/pull/2378
[FLINK-4409] [build] Exclude JSR 305 from Hadoop dependencies
The JSR 305 classes (`javax.annotation`) are already in Flink's core
dependencies.
I verified that after this patch, the classes are no longer in the Hadoop
jar files.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/StephanEwen/incubator-flink jsr_hadoop
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/flink/pull/2378.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #2378
----
commit 3f1e1f92f2138877a4e1e0a187638cdb30de0865
Author: Stephan Ewen <[email protected]>
Date: 2016-08-17T09:53:57Z
[FLINK-4409] [build] Exclude JSR 305 from Hadoop dependencies
----
> class conflict between jsr305-1.3.9.jar and flink-shaded-hadoop2-1.1.1.jar
> --------------------------------------------------------------------------
>
> Key: FLINK-4409
> URL: https://issues.apache.org/jira/browse/FLINK-4409
> Project: Flink
> Issue Type: Bug
> Components: Build System
> Affects Versions: 1.1.0
> Reporter: Renkai Ge
> Assignee: Stephan Ewen
> Priority: Minor
>
> It seems all classes in jsr305-1.3.9.jar can be found in
> flink-shaded-hadoop2-1.1.1.jar,too.
> I can exclude these jars for a success assembly and run when I was using sbt
> {code:none}
> libraryDependencies ++= Seq(
> "com.typesafe.play" %% "play-json" % "2.3.8",
> "org.apache.flink" %% "flink-scala" % "1.1.1"
> exclude("com.google.code.findbugs", "jsr305"),
> "org.apache.flink" %% "flink-connector-kafka-0.8" % "1.1.1"
> exclude("com.google.code.findbugs", "jsr305"),
> "org.apache.flink" %% "flink-streaming-scala" % "1.1.1"
> exclude("com.google.code.findbugs", "jsr305"),
> "org.apache.flink" %% "flink-clients" % "1.1.1"
> exclude("com.google.code.findbugs", "jsr305"),
> "joda-time" % "joda-time" % "2.9.4",
> "org.scalikejdbc" %% "scalikejdbc" % "2.2.7",
> "mysql" % "mysql-connector-java" % "5.1.15",
> "io.spray" %% "spray-caching" % "1.3.3"
> )
> {code}
> But I think it might be better to remove jsr305 dependency from Flink.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)