2016-10-10 9 views
0

Я пытаюсь построить this project для Eclipse. вот ошибки, которые я не имею ни малейшего понятия, что делатьsbt.ResolveException play-bootstrap-SNAPSHOT

[warn] :::::::::::::::::::::::::::::::::::::::::::::: 
[warn] ::   UNRESOLVED DEPENDENCIES   :: 
[warn] :::::::::::::::::::::::::::::::::::::::::::::: 
[warn] :: com.adrianhurt#play-bootstrap_2.11;1.1-P25-B3-SNAPSHOT: not found 
[warn] :::::::::::::::::::::::::::::::::::::::::::::: 
[warn] 
[warn] Note: Unresolved dependencies path: 
[warn]   com.adrianhurt:play-bootstrap_2.11:1.1-P25-B3-SNAPSHOT (D:\WorkSpace\lagom\lagom-shop\build.sbt#L51) 
[warn]   +- be.yannickdeturck.lagomshop:front-end_2.11:1.0-SNAPSHOT 
[trace] Stack trace suppressed: run last front-end/*:update for the full output. 
[error] (front-end/*:update) sbt.ResolveException: unresolved dependency: com.adrianhurt#play-bootstrap_2.11;1.1-P25-B3-SNAPSHOT: not found 
[error] Could not create Eclipse project files: 
[error] Error evaluating task 'scalacOptions': error 
[error] Error evaluating task 'externalDependencyClasspath': error 
> 

ответ

0

так что мне пришлось изменить файл build.sbt, как следовать

lazy val frontEnd = project("front-end") ... 
"com.adrianhurt" %% "play-bootstrap" % "1.0-P25-B3" 
Смежные вопросы