conflicting cross-version suffixes in {file:/home/user/temp/play-scala/}root: · Issue #73 · sorm/sorm · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 31, 2022. It is now read-only.
I thought that the error with org.scala-lang.modules:scala-xml _2.11, _2.12.0-M4 and org.scala-lang.modules:scala-parser-combinators _2.11, _2.12.0-M4 might be coming from the library I wrote (libraryDependencies += "scala.trace" %% "scala-trace-debug" % "2.2.17"), but when I removed that library I still got the error:
[play-scala] $ reload
[info] Loading project definition from /home/johnreed/temp/play-scala/project
[info] Set current project to play-scala (in build file:/home/johnreed/temp/play-scala/)
[play-scala] $ clean
[success] Total time: 0 s, completed Jun 12, 2016 9:23:23 PM
[play-scala] $ compile
[info] Updating {file:/home/johnreed/temp/play-scala/}root...
[info] Resolving net.contentobjects.jnotify#jnotify;0.94-play-1 ...
[info] Done updating.
[error] Modules were resolved with conflicting cross-version suffixes in {file:/home/johnreed/temp/play-scala/}root:
[error] org.scala-lang.modules:scala-xml _2.11, _2.12.0-M4
[error] org.scala-lang.modules:scala-parser-combinators _2.11, _2.12.0-M4
[trace] Stack trace suppressed: run last *:update for the full output.
[error] (*:update) Conflicting cross-version suffixes in: org.scala-lang.modules:scala-xml, org.scala-lang.modules:scala-parser-combinators
Also, I'm getting this error from my library (libraryDependencies += "scala.trace" %% "scala-trace-debug" % "2.2.17"), which I think might be related:
SBT project import
[warn] Multiple dependencies with the same organization/name but different versions. To avoid conflict, pick one version: [warn] * org.scala-lang.modules:scala-parser-combinators_2.11:(1.0.1, 1.0.4) [warn] * org.scala-lang.modules:scala-xml_2.11:(1.0.2, 1.0.4)
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
I am following these instructions to add sorm to my new play project:
http://stackoverflow.com/questions/28759698/using-sorm-with-play-framework-2-3-8
My build.sbt file looks exactly like this:
When I saved this file after adding
libraryDependencies += "org.sorm-framework" % "sorm" % "0.3.16"
, I got this error from sbt:I thought that the error with
org.scala-lang.modules:scala-xml _2.11, _2.12.0-M4
andorg.scala-lang.modules:scala-parser-combinators _2.11, _2.12.0-M4
might be coming from the library I wrote (libraryDependencies += "scala.trace" %% "scala-trace-debug" % "2.2.17"
), but when I removed that library I still got the error:Also, I'm getting this error from my library (
libraryDependencies += "scala.trace" %% "scala-trace-debug" % "2.2.17"
), which I think might be related:SBT project import
[warn] Multiple dependencies with the same organization/name but different versions. To avoid conflict, pick one version: [warn] * org.scala-lang.modules:scala-parser-combinators_2.11:(1.0.1, 1.0.4) [warn] * org.scala-lang.modules:scala-xml_2.11:(1.0.2, 1.0.4)
The text was updated successfully, but these errors were encountered: