I've created new play framework app using a angular-seed-play-java template. So now I'm trying to install Babel as a transpiler.
Following these instructions I've added sbt-babeljs to my plugins.sbt
https://github.com/stonexx/sbt-babeljs .
Then I want to install bubel-core locally. I got a webjar from the http://www.webjars.org/ and inserted the following line into my build.sbt .
"org.webjars.npm" % "babel-core" % "6.11.4"
I'm getting unresolved dependency error:
[error] (*:update) sbt.ResolveException: unresolved dependency: org.webjars.npm#babel-types;[6.9.1,7): not found
[error] unresolved dependency: org.webjars.npm#babel-template;[6.9.0,7): not found
[error] unresolved dependency: org.webjars.npm#babel-traverse;[6.11.4,7): not found
There is no required version of babel-types at http://www.webjars.org/ . And I get similar problems with some other webjars. I constantly get unresolved dependency errors. How I supposed to solve those?
Thanks in advance.