Exporting Scala project as jar from Eclipse
问题 I have a Scala project and I would like to export it as a jar. *1. At first I tried creating a Java class for the project as an entry point public class JMain { public static void main(String[] args) { System.out.println("Java main calling Scala main"); SMain.main(new String[] {""}); //SMain.main is the actual *main* and this worked fine and dandy when launched from Eclipse, but when I export it as jar it'll give me 18 exceptions or so. I do now know how to replicate then "environment" in