I'm new to sbt/scala and also Java dependencies, in the README file it says to add to build.sbt the following line:
libraryDependencies += "com.thenewmotion" %% "ocpp-j-api" % "9.0.1"
though I could only make it work when I added the following line:
libraryDependencies += "com.thenewmotion.ocpp" %% "ocpp-j-api" % "9.0.0"
I'm new to sbt/scala and also Java dependencies, in the README file it says to add to
build.sbt
the following line:libraryDependencies += "com.thenewmotion" %% "ocpp-j-api" % "9.0.1"
though I could only make it work when I added the following line:libraryDependencies += "com.thenewmotion.ocpp" %% "ocpp-j-api" % "9.0.0"
Am I or the README wrong?