Reputation: 540
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
Reputation: 5931
Preferences | Build, Execution, Deployment | Build Tools | SBT | Launcher (sbt-launch.sbt)
As shown below:
Upvotes: 1
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
Reputation: 312
Have you tried the settings?
Preferences
⇒ Build, Execution, Deployment
⇒ Build Tools
⇒ SBT
⇒ Launcher (sbt-launch.jar)
⇒ Custom
Upvotes: 2