激活器依赖错误
Posted
技术标签:
【中文标题】激活器依赖错误【英文标题】:Activator Dependencies Error 【发布时间】:2015-12-29 01:04:47 【问题描述】:版本
sbt.version=0.13.8
name := """sample_app"""
version := "1.0.0-SNAPSHOT"
scalaVersion := "2.11.6"
解析器
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
所有插件
// The Play plugin
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.3")
// web plugins
addSbtPlugin("com.typesafe.sbt" % "sbt-coffeescript" % "1.0.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-less" % "1.0.6")
addSbtPlugin("com.typesafe.sbt" % "sbt-jshint" % "1.0.3")
addSbtPlugin("com.typesafe.sbt" % "sbt-rjs" % "1.0.7")
addSbtPlugin("com.typesafe.sbt" % "sbt-digest" % "1.1.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-mocha" % "1.1.0")
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0")
依赖错误
我使用 Activator 创建新项目,在命令提示符下我执行命令 activator dependencies 结果是
E:\sample_app>activator dependencies
[info] Loading project definition from E:\sample_app\project
[info] Set current project to sample_app (in build file:/E:/sample_app/)
[error] Not a valid command: dependencies
[error] Not a valid project ID: dependencies
[error] Expected ':' (if selecting a configuration)
[error] Not a valid key: dependencies (similar: all-dependencies, rpm-dependencies, allDependencies)
[error] dependencies
[error] ^
使用的版本:
Java version is 1.8.0_51,
Activator is 1.3.6,
OS is windows 8,
64 - bit OS.
请给我一个解决方案...
【问题讨论】:
拼写错误:dependecies
-> dependencies
【参考方案1】:
如果您正在寻找依赖项,因为激活器提示您需要不同的设置。
做
activator "show allDependencies"
【讨论】:
是的,我尝试了一个结果是: E:\sample_app>activator show allDependencies [info] Loading project definition from E:\sample_app\project [info] 将当前项目设置为 sample_app(在构建文件中:/E:/sample_app/) [error] 不是有效命令:show(类似:shell)[error] 预期的空白字符 [error] 不是有效的项目 ID:show [error] 预期的 ':'(如果选择配置)[错误]不是有效的键:显示(类似:showTiming,showSuccess,show-timing)[错误]显示[错误]^@Ajay Padala 你没有在 show allDependencies 周围加上引号 (") 是的,我没有使用 (") 先生... E:\sample_app>activator show allDependencies 仅使用此命令以上是关于激活器依赖错误的主要内容,如果未能解决你的问题,请参考以下文章
ASP.NET Core 依赖注入错误:尝试激活时无法解析服务类型 - 调用视图组件时出现错误 [重复]