Sbt 0.13.8 windows 7 unresolved dependencies: org.fusesource.jansi

I have scala and sbt installed on windows. I cannot use the VM field because VT is disabled on the laptop that I use at work. Using scalac and scala to run the sample program works, but I can't get sbt to work from the command line.

I have SBT_HOME installed in C: \ Program Files (x86) \ sbt \ How can I get SBT to work? Any help is appreciated. The error looks like this:

java -Dsbt.log.noformat=true -Djline.terminal=jline.UnsupportedTerminal -Xmx512M -XX:MaxPermSize=256M -jar C:\Users\indgorti\.IdeaIC14\system\sbt\sbt-launch.jar Getting org.fusesource.jansi jansi 1.11 ... :: problems summary :: :::: WARNINGS module not found: org.fusesource.jansi#jansi;1.11 ==== local: tried C:\Users\indgorti\.ivy2\local\org.fusesource.jansi\jansi\1.11\ivys\ivy.xml ==== typesafe-ivy-releases: tried http://repo.typesafe.com/typesafe/ivy-releases/org.fusesource.jansi/jansi/1.11/ivys/ivy.xml ==== Maven Central: tried http://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.11/jansi-1.11.pom :::::::::::::::::::::::::::::::::::::::::::::: :: UNRESOLVED DEPENDENCIES :: :::::::::::::::::::::::::::::::::::::::::::::: :: org.fusesource.jansi#jansi;1.11: not found :::::::::::::::::::::::::::::::::::::::::::::: :: USE VERBOSE OR DEBUG MESSAGE LEVEL FOR MORE DETAILS unresolved dependency: org.fusesource.jansi#jansi;1.11: not found Error during sbt execution: Error retrieving required libraries (see C:\Users\indgorti\.sbt\boot\update.log for complete log) Error: Could not retrieve jansi 1.11 Java HotSpot(TM) Client VM warning: ignoring option MaxPermSize=256M; support was removed in 8.0 
+5
source share
1 answer

You need to configure the proxy server for SBT as the same proxy server as your local web browser.

Please follow the instructions in How to use sbt because of the proxy server? to configure a proxy server in SBT.

0
source

All Articles