Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Not a valid command: idea-shell (similar: shell, oldshell)

Tags:

I have trouble refreshing my SBT project in Intellij. And I am not the only one.

This is the sbt-console:

/Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home/bin/java -agentlib:jdwp=transport=dt_socket,address=localhost:51917,suspend=n,server=y -Xdebug -server -Xmx1028M -Dfile.encoding=UTF-8 -Didea.runid=2017.2 -Didea.managed=true -jar "/Users/pascal.mengelt/Library/Application Support/IntelliJIdea2018.1/Scala/launcher/sbt-launch.jar" idea-shell Listening for transport dt_socket at address: 51917 [info] Loading settings from idea.sbt ... [info] Loading global plugins from /Users/user/.sbt/1.0/plugins [info] Loading settings from plugins.sbt ... [info] Loading project definition from /Users/pascal.mengelt/GitHub/scala/scala-adapters-wizard/project [info] Loading settings from build.sbt ... [info] Set current project to wizardDemo (in build file:/Users/pascal.mengelt/GitHub/scala/scala-adapters-wizard/) [error] Not a valid command: idea-shell (similar: shell, oldshell) [error] Not a valid project ID: idea-shell [error] Expected ':' [error] Not a valid key: idea-shell (similar: daemonShell) [error] idea-shell [error]           ^ [INFO] [04/13/2018 13:13:19.377] [Thread-2] [CoordinatedShutdown(akka://sbt-web)] Starting coordinated shutdown from JVM shutdown hook 
like image 955
pme Avatar asked Apr 13 '18 11:04

pme


Video Answer


1 Answers

I found the Intellij issue for that (with workaround):

SCL-12430 Not a valid key: idea-shell

Yes ,delete the ~/.sbt/{0.13|1.0}/plugins/target

Here the command provided by Mateusz Kubuszok:

rm -rf ~/.sbt/{0.13,1.0}/plugins/target 
like image 189
pme Avatar answered Nov 17 '22 04:11

pme