I am trying to disabling eviction warnings when using sbt, such as these:
[warn] There may be incompatibilities among your library dependencies.[warn]
Here are some of the libraries that were evicted:[warn]         *
com.typesafe.sbt:sbt-git:0.6.1 -> 0.6.2[warn]   *
com.typesafe.sbt:sbt-site:0.7.0 -> 0.7.1[warn] Run 'evicted' to see detailed
eviction warnings
I am using this line to disable eviction warnings:
evictionWarningOptions in update :=
EvictionWarningOptions.default.withWarnTransitiveEvictions(false).withWarnDirectEvictions(false).withWarnScalaVersionEviction(false)
as found here https://github.com/sbt/sbt/issues/1636#issuecomment-57498141.
But I am not sure where it belongs in project/ScalaBuild.scalaI've tried
putting it in SparkBuild.sharedSettings, but it doesn't work. Can anyone
help?



--
View this message in context: 
http://apache-spark-developers-list.1001551.n3.nabble.com/Disabling-eviction-warnings-when-using-sbt-tp10369.html
Sent from the Apache Spark Developers List mailing list archive at Nabble.com.

Reply via email to