BAR
BAR

Reputation: 17151

IntelliJ - Remote Scala Compile Server

Is there a way to have a remote machine act as a Scala compile server using IntelliJ?

IntelliJ has the option to use an external compile server, but this is machine local as far as I can tell.

I am wondering if this could be done with the help of sbt-server, but this is not a requirement.

Upvotes: 13

Views: 2344

Answers (1)

Justin Kaeser
Justin Kaeser

Reputation: 5948

This use case is not supported by the compile server in the IntelliJ Scala plugin. It may be possible with the sbt 1.0 server functionality, but I believe it's not designed with this in mind either. It would require both the project files and the server to be available on the remote box, which is probably not what you had in mind.

Upvotes: 1

Related Questions