我正在尝试在我的项目中使用 babel webjar 插件,该插件是用 playframework 2.5 构建的,它基本上是sbt
为了构建项目而运行的。
当我把
addSbtPlugin("org.webjars" %% "babel" % "6.3.26-1" )
在 project/plugins.sbt 中,我收到此错误:
[info] Resolving org.webjars#babel;6.3.26-1 ...
[warn] module not found: org.webjars#babel;6.3.26-1
<trying other repositories>
[warn] https://repo1.maven.org/maven2/org/webjars/babel_2.10_0.13/6.3.26-1/babel-6.3.26-1.pom
pom 文件位于http://repo1.maven.org/maven2/org/webjars/babel/6.3.26-1/babel-6.3.26-1.pom。这几乎是sbt尝试的地址,但是sbt添加了scala版本。
有没有办法告诉 sbt 不要添加 scala 版本?我尝试了这个版本和一个百分号,他们都添加了 scala 版本。
我正在使用 sbt 0.13.9。