Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change sbt version?

I would like to set the sbt version. I tried doing this by creating a file project/build.properties in my project and added the line

sbt.version=0.13.13

but IntelliJ tells me

unused property

What am I to do to get IntelliJ to use a different sbt version?

like image 377
Make42 Avatar asked Oct 17 '22 22:10

Make42


1 Answers

The line is correct. On project refresh, IntelliJ uses the sbt launcher which respects this property.

You probably just have another plugin which expects the property to be used somewhere within your code, so you can ignore the error message.

like image 175
Justin Kaeser Avatar answered Oct 21 '22 05:10

Justin Kaeser