Tanny
Tanny

Reputation: 540

How to set sbt bin path in IntellIJ?

I have a local sbt installed with a higher version. But the IntellIJ downloads a lower version of the sbt.

How/where can I update the path in the IntellIJ so that it takes up the newer version of sbt?

Upvotes: 2

Views: 1795

Answers (3)

sheldonzy
sheldonzy

Reputation: 5931

Preferences | Build, Execution, Deployment | Build Tools | SBT | Launcher (sbt-launch.sbt)

As shown below:

enter image description here

Upvotes: 1

Justin Kaeser
Justin Kaeser

Reputation: 5948

IntelliJ will use a built-in launcher which may be out of date, but the launcher automatically downloads a newer version of sbt if it is configured in your project's project/build.properties file, adding a line like this:

sbt.version=0.13.11

You can also choose a custom launcher binary in the Preferences: Build, Execution, Deployment / Build Tools / SBT

Upvotes: 2

Devis L.
Devis L.

Reputation: 312

Have you tried the settings?

Preferences
⇒ Build, Execution, Deployment
⇒ Build Tools
⇒ SBT

⇒ Launcher (sbt-launch.jar)
⇒ Custom

Upvotes: 2

Related Questions