2016-04-05 2 views
2

Ich bekomme dieses seltsame Problem, wenn ich versuche, ein SBT-Projekt in IntelliJ IDEA 15 CE zu importieren.IntelliJ - AWS-Anmeldeinformationen können nicht von einem Anbieter in der Kette geladen werden

Die Nachricht ist einfach Unable to load AWS Credentials from any provider in the chain.

Ich habe versucht, AWS_ACCESS_KEY_ID und AWS_SECRET_ACCESS_KEY als Umgebungsvariablen für meine Sitzung auszusetzen, und ich weiß sicher, dass die Werte, die ich einstelle, korrekt sind. Ich habe auch versucht, eine ~/.aws/credentials Datei zu erstellen, aber keiner von diesen tut etwas in Bezug auf die Behebung dieses Fehlers. Ich denke, das ist speziell ein IntelliJ-Fehler, weil ich dieses Projekt in meiner Konsole mit in Ordnung ausführen kann.

Hier ist ein Schnipsel von meiner sbt.last.log. Es ist nicht sehr hilfreich.

[error]  several problems occurred while resolving dependency: org.ow2#ow2;1.3 {}: 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error] 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error] 
[error]  several problems occurred while resolving dependency: org.ow2.asm#asm-parent;4.1 {}: 
[error]  several problems occurred while resolving dependency: org.ow2#ow2;1.3 {}: 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error] 
[error]  several problems occurred while resolving dependency: org.ow2#ow2;1.3 {}: 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error] 
[error]  several problems occurred while resolving dependency: org.ow2#ow2;1.3 {}: 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error] 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error] 
[error]  Unable to load AWS credentials from any provider in the chain 
[error]  Unable to load AWS credentials from any provider in the chain 
[error] Total time: 596 s, completed Apr 5, 2016 10:59:14 AM 

Wie kann ich das beheben?

+0

Update: Ich aktualisiert auf IntelliJ 2016 CE, und habe immer noch das gleiche Problem. – bioball

Antwort

3

Der einzige Weg, wie ich es funktionierte, war die Verwendung der Datei (ich verwende das neueste IntelliJ CE).

In Ihrem ~/.aws/credential add:

[default] 
aws_access_key_id={NO_QUOTES_KEY} 
aws_secret_access_key={NO_QUOTES_SECRET_KEY} 

Der Profilname innerhalb []Standard sein muss. Es hat mit keinem anderen Profilnamen funktioniert.

+0

Dies funktioniert nicht für mich ... :( – bioball

1

landete ich nur

laufen
sbt compile 

oder (Activator, die eine Obermenge von SBT ist)

activator compile 

von der Kommandozeile, die aufgelöst (und heruntergeladen) alle Abhängigkeiten, dann geöffnet es in IntelliJ.

Hoffe, dass das auch für Sie funktioniert.