Felix
Felix

Reputation: 5619

intellij Scala Project issue

I try to import an Scala Project into intellij. Intellij founds starts to load the dependencies then I got this error

How can I solve this issue?

[error] Expected non-whitespace character
[error] --addPluginSbtFile=C:\Users\Firstname Lastname\AppData\Local\Temp\idea1.sbt
[error]                                      ^

Thanks in Advance

Upvotes: 1

Views: 213

Answers (2)

Justin Kaeser
Justin Kaeser

Reputation: 5948

This is fixed in the Scala plugin for IntelliJ IDEA update 2019.3.18 and release 2020.1

https://youtrack.jetbrains.com/issue/SCL-15360

Upvotes: 1

AzmahQi
AzmahQi

Reputation: 378

The path should not contain BlankSpaces.

You have a blank space between Firstname LastName:

C:\Users\Firstname Lastname\AppData\Local\Temp\idea1.sbt

Possible solution:

C:\Users\FirstnameLastname\AppData\Local\Temp\idea1.sbt

Upvotes: 1

Related Questions