stuck at “Getting org.scala-sbt sbt 0.13.6 …” when running sbt in terminal

后端 未结 8 1116
忘掉有多难
忘掉有多难 2021-01-30 07:40

Similar problem with How to use sbt behind authenticated proxy?. I tried with the given answer and problem still there.

When I run sbt in terminal, it

相关标签:
8条回答
  • 2021-01-30 08:30

    try to use a fast maven mirror or run it behind a http/https proxy .

    0 讨论(0)
  • 2021-01-30 08:31

    Creating a build.sbt file worked as well. My build.sbt file looks like below;

    lazy val root = (project in file(".")).
      settings(
        name := "hello",
        version := "1.0",
        scalaVersion := "2.11.4"
      )
    
    0 讨论(0)
提交回复
热议问题