I read some tutorials about making Eclipse plugins, but every text was just about Java coding. Does it really have to be Java or there is some way to write a plugin in some other JVM language such as Scala or Clojure?
Asked
Active
Viewed 119 times
0
-
2The Scala Eclipse Plugin itself is written in Scala. From the outside it's all Java classes, anyway. – Marko Topolnik Jun 04 '13 at 12:41
2 Answers
2
You can use all languages that are based on JVM. You need to simply add a dependency jar (e.g. Scala dependency).
Tested live, so it must work!

Michal Borek
- 4,584
- 2
- 30
- 40