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

后端 未结 8 1114
忘掉有多难
忘掉有多难 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: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"
      )
    

提交回复
热议问题