JDKot
JDKot

Reputation: 6771

Version conflict during import SBT project (Play Framework) in IntelliJ IDEA 15.0.2

I built application using Typesafe Activator, Play 2.5.0-M1 (activator) in IntelliJ IDEA 15.0.2, and when I import/open it ...

SBT project import

[warn] Multiple dependencies with the same organization/name but different versions. To avoid conflict, pick one version: 
[warn] * org.apache.httpcomponents:httpclient:(4.0.1, 4.3.4) 
[warn] * com.google.guava:guava:(18.0, 16.0.1) 
[warn] * org.apache.httpcomponents:httpcore:(4.0.1, 4.3.2) 
[warn] * commons-logging:commons-logging:(1.1.1, 1.1.3) 
[warn] * org.scala-lang.modules:scala-parser-combinators_2.11:(1.0.1, 1.0.3) 
[warn] * org.scala-lang.modules:scala-xml_2.11:(1.0.1, 1.0.3)

[SBT project import conflict][1]

What changes should I make to my project or IntelliJ IDEA configuration?

link to GitHub repository

Upvotes: 1

Views: 951

Answers (1)

Ajay Padala
Ajay Padala

Reputation: 2401

You could try dependencyOverrides key to specify exactly which version you want to use. This will turn off the warning.

http://www.scala-sbt.org/0.13/docs/Library-Management.html#Overriding+a+version

Upvotes: 1

Related Questions