I decided to introduce GitBucket in-house. I haven't touched scala, but as far as I can see the contents, it seems to be a little messy. Decided to remodel, http://qiita.com/icoxfog417/items/31d88358942d8dd0eb8b I tried to build the environment with reference to.
However, the essential build cannot be executed.
When you hit the sbt command
Your proxy requires authentication.
I get a proxy authentication error.
In sbtconfig.txt
-Dhttp.proxyHost = Proxy host -Dhttp.proxyPort = port -Dhttp.proxyUser = user -Dhttp.proxyPassword = password -Dhttps.proxyHost = Proxy host -Dhttps.proxyPort = port
Has been set.
Looking at StackFlow of sbt, the following article https://stackoverflow.com/questions/31018536/getting-org-scala-sbtsbt0-13-8-not-found-error-though-i-have-the-same-versi/31706477#31706477
By mistake my environment was pointing to jre rather than jdk.
This was the cause. In my environment, while I installed various software, I had 4 Java installed. The environment variable path pointed to 1.8 in the JRE.
If you think about it, sbt is a build tool, so of course you need a JDK. However, I don't notice it in that message ... I've been researching it for a long time, thinking that the proxy settings are completely wrong. ..
Recommended Posts