Skip to content

Instantly share code, notes, and snippets.

@EdgeCaseBerg
Created December 19, 2017 16:59
Show Gist options
  • Save EdgeCaseBerg/8d9d25c83a12a6efdd009c3881bf9fa0 to your computer and use it in GitHub Desktop.
Save EdgeCaseBerg/8d9d25c83a12a6efdd009c3881bf9fa0 to your computer and use it in GitHub Desktop.

Revisions

  1. EdgeCaseBerg renamed this gist Dec 19, 2017. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. EdgeCaseBerg created this gist Dec 19, 2017.
    19 changes: 19 additions & 0 deletions gistfile1.txt
    Original 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"),
    ```