reactiveneo icon indicating copy to clipboard operation
reactiveneo copied to clipboard

Update to latest version of Scala

Open onema opened this issue 6 years ago • 1 comments

Any chance this will be updated to the latest version of scala?

With the following SBT config:

name := "Test"

version := "0.0.1"

scalaVersion := "2.12.3"

resolvers += Resolver.sonatypeRepo("releases")

libraryDependencies ++= {
  Seq(
    "com.websudos"              % "reactiveneo-dsl_2.11"      % "0.3.1",
    "com.websudos"              % "reactiveneo_2.11"          % "0.3.1"
  )
}

I get the following error

Error:Error while importing SBT project:<br/>...<br/><pre>[info] 	[SUCCESSFUL ] org.slf4j#slf4j-api;1.7.7!slf4j-api.jar (222ms)
[info] downloading https://repo1.maven.org/maven2/io/netty/netty/3.10.1.Final/netty-3.10.1.Final.jar ...
[info] 	[SUCCESSFUL ] io.netty#netty;3.10.1.Final!netty.jar(bundle) (525ms)
[info] downloading https://repo1.maven.org/maven2/commons-codec/commons-codec/1.6/commons-codec-1.6.jar ...
[info] 	[SUCCESSFUL ] commons-codec#commons-codec;1.6!commons-codec.jar (241ms)
[warn] 	::::::::::::::::::::::::::::::::::::::::::::::
[warn] 	::          UNRESOLVED DEPENDENCIES         ::
[warn] 	::::::::::::::::::::::::::::::::::::::::::::::
[warn] 	:: com.typesafe.play#play-json_2.11;2.3.4: not found
[warn] 	::::::::::::::::::::::::::::::::::::::::::::::
[warn]
[warn] 	Note: Unresolved dependencies path:
[warn] 		com.typesafe.play:play-json_2.11:2.3.4
[warn] 		  +- com.websudos:reactiveneo-dsl_2.11:0.3.1 (/Users/USER/path/to/Project/build.sbt#L12)
[warn] 		  +- test:test_2.12:0.0.1
[trace] Stack trace suppressed: run 'last *:ssExtractDependencies' for the full output.
[trace] Stack trace suppressed: run 'last *:update' for the full output.
[error] (*:ssExtractDependencies) sbt.ResolveException: unresolved dependency: com.typesafe.play#play-json_2.11;2.3.4: not found
[error] (*:update) sbt.ResolveException: unresolved dependency: com.typesafe.play#play-json_2.11;2.3.4: not found

onema avatar Sep 16 '17 08:09 onema