播放框架:找不到主机 repo.typesafe.com

Play framework: Host repo.typesafe.com not found

环境:玩框架;激活器-1.3.2;播放-Java 网络应用程序

build.sbt -

name := """ProjectDemoNew"""

version := "1.0-SNAPSHOT"

lazy val root = (project in file(".")).enablePlugins(PlayJava)

scalaVersion := "2.11.1"

resolvers +="Local Maven Repository" at "file:///home/shiva/.m2/repository"

libraryDependencies ++= Seq(
  javaJdbc,
  javaEbean,
  cache,
  javaWs,
  "org.springframework" % "spring-context" % "3.2.3.RELEASE",
   "org.springframework" % "spring-aop" % "3.2.3.RELEASE",
   "org.springframework" % "spring-expression" % "3.2.3.RELEASE",
  "org.springframework" % "spring-test" % "3.2.3.RELEASE",
  "com.mycomp.config"%"platform-config"%"0.0.1-SNAPSHOT"
)

$ 激活剂 运行

当互联网中断时出现以下错误..

--
--
        [info] You probably access the destination server through a proxy server that is not well configured.
        [warn] Host repo.typesafe.com not found. url=https://repo.typesafe.com/typesafe/releases/com/mycomp/conf/i/platform-config/0.0.1-SNAPSHOT/...-SNAPSHOT.pom
    --
    --

如果互联网已连接,我没有看到任何错误。 帖子很多,但答案似乎千差万别。

所有 jar(spring、特定于应用程序、第三方..)都在我的本地存储库中。但它总是连接互联网刷新依赖,当网速不好时构建速度很慢

如何让 Play 不通过 internet/offline 而通过本地存储库?这有助于我在没有互联网连接或互联网连接较弱的情况下快速构建。

它会自动检查 Internet 是否存在 SNAPSHOT 依赖项。 如果您不想让它这样做,请添加:

offline := true

到您的 build.sbt 文件。