DOYUNG YOON created S2GRAPH-119:
-----------------------------------
Summary: Set up EvictionOptions on build.sbt
Key: S2GRAPH-119
URL: https://issues.apache.org/jira/browse/S2GRAPH-119
Project: S2Graph
Issue Type: Task
Affects Versions: 0.1.0
Reporter: DOYUNG YOON
Assignee: DOYUNG YOON
Priority: Trivial
Fix For: 0.1.0
Currently, when we run `sbt package` there are few warnings like follows.
{noformat}
[warn] There may be incompatibilities among your library dependencies.
[warn] Here are some of the libraries that were evicted:
[warn] * com.google.guava:guava:(16.0.1, 19.0, 18.0, 11.0.2) -> 12.0.1
[warn] Run 'evicted' to see detailed eviction warnings
{noformat}
I am suggesting add followings on root build.sbt so turn off warning messages.
{noformat}
evictionWarningOptions in update :=
EvictionWarningOptions.default.withWarnTransitiveEvictions(false).withWarnDirectEvictions(false).withWarnScalaVersionEviction(false)
{noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)