unic / ScalaWebTest

ScalaWebTest is a library for writing ScalaTest/Selenium based integration tests for web applications. It helps you with your basic setup and provides a new and very efficient approach to testing.
https://scalawebtest.org
Apache License 2.0
29 stars 9 forks source link

Fix evicted warning #103

Closed DaniRey closed 5 years ago

DaniRey commented 5 years ago

play-json depends on

The latter depends on com.fasterxml.jackson.core:jackson-databind:2.9.8 which in turn depends on com.fasterxml.jackson.core:jackson-annotations:2.9.0

This results in two conflicting versions for com.fasterxml.jackson.core:jackson-annotations 2.9.0 and 2.9.8

To avoid warnings, we should explicitly pick the newest API version with dependencyOverrides += "com.fasterxml.jackson.core" % "jackson-annotations" % "2.9.8",

DaniRey commented 5 years ago

This was fixed as part of #92