Created
December 19, 2017 16:59
-
-
Save EdgeCaseBerg/8d9d25c83a12a6efdd009c3881bf9fa0 to your computer and use it in GitHub Desktop.
Revisions
-
EdgeCaseBerg renamed this gist
Dec 19, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
EdgeCaseBerg created this gist
Dec 19, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ Getting this? ``` java.lang.NoSuchMethodError: play.api.libs.iteratee.Execution$Implicits$.trampoline()Lscala/concurrent/ExecutionContext; ``` Is your build.sbt including a dependency like this? ``` "org.reactivemongo" %% "play2-reactivemongo" % "0.12.6-play24" ``` And you're using playframework version 2.4 (2.4.6 for me specifically)? Then fix the problem by changing your dependency to: ``` "org.reactivemongo" %% "play2-reactivemongo" % "0.12.6-play24" exclude("com.typesafe.play", "play-iteratees_2.11"), ```