ideally using the FSC compiler
Question becomes what command or pom file set up should I use?
I\'m currently using the scala maven plugin but it doesn\'t see
You can run the fsc as part of the compile phase of maven by adding the following to the plugins section of your pom.xml
org.scala-tools maven-scala-plugin 2.9.1 cc cc compile true true
Of course you have to remove the standard scala compile execution from your POM if necessary.