Is there a scala plugin compatible with Spring Source Tools Suit?

I am using STS based on eclipe 2.6.2 and there is a scala plugin for eclipse

http://www.assembla.com/wiki/show/scala-ide

but it is not compatible with STS.

Is there anything else plugin.

I basically need to debug the scala framework project.

+6
source share
1 answer

The Eclipse IDE for Scala should work with STS. I just tried it with version 2.6.1.RELEASE (build code 201105041000).

When installing the Scala plugin, be sure not to select JDT Weaving for Scala. The JDT weaving component is already provided by STS (albeit in an older version). The Scala plugin comes with a newer version, which upsets the AspectJ plugin (part of STS).

Even easier, you can use the toolbar view, the Extensions page. You can check the Scala IDE there, and it correctly leaves the JTT weaving plugin.

If you have other problems, use the mailing list (scala -ide-user@googlegroups.com ) or register a ticket.

+6
source

Source: https://habr.com/ru/post/890939/


All Articles