SBT buid error:[error] Server access Error: Received fatal alert: access_denied

SBT buid error:[error] Server access Error: Received fatal alert: access_denied

我一直在拒绝服务器访问 error.Unable 通过 web.But 找到 fix.Investigated none 他们工作 well.I 我正在使用 windows7.

C:\Users\thathine>sbt
    Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=256m; sup
    port was removed in 8.0
    [info] Loading project definition from C:\Users\thathine\project
    [info] Updating {file:/C:/Users/thathine/project/}thathine-build...
    [info] Resolving org.scala-lang#scala-library;2.11.8 ...
    [error] Server access Error: Received fatal alert: access_denied url=https://rep
    o.typesafe.com/typesafe/ivy-releases/org.scala-lang/scala-library/2.11.8/ivys/iv
    y.xml
    [error] Server access Error: Received fatal alert: access_denied url=https://rep
    o.scala-sbt.org/scalasbt/sbt-plugin-releases/org.scala-lang/scala-library/2.11.8
    /ivys/ivy.xml

我的buld.sbt如下:

name := "spark_codebase"

version := "1.0"

scalaVersion := "2.11.8"

我需要尽快解决这个问题。请提前提出任何solution.Thanks。

请查找 scala 的版本,java,sbt:

C:\Users\thathine>javac -version
javac 1.8.0_131

C:\Users\thathine>scala -version
Scala code runner version 2.11.8 -- Copyright 2002-2016, LAMP/EPFL

sbt 版本是 sbt-0.13.15

经过一番努力,发现这个问题是因为我们公司网络使用了一些代理来限制员工访问,比如防火墙。由于我在代理后面,Maven 将无法下载任何依赖项。

我从我公司的 IT 帮助台获得了代理设置。使用它们后,在使用 sbt 之前使用 windows 7.use 以下命令行选项,通过替换 [your-ProxyServer] 和 [=13],它工作了 finally.I =] 使用您的实际代理服务器和端口详细信息。

set JAVA_OPTS=-Dhttp.proxySet=true -Dhttp.proxyHost=[your-ProxyServer] -Dhttp.proxyPort=<port-number> -Dhttps.proxyHost=[your-ProxyServer] -Dhttps.proxyPort=<port-number> -Dftp.proxyHost=[your-ProxyServer] -Dftp.proxyPort=<port-number>

如果您正在使用 IDE,例如 IntelliJ 或 Eclipse: 在 creating/importing 项目时使用 -VM 参数下的相同选项。