Custom compiler with maven

I am trying to make Maven2 to compile coffeescript in javascript. As far as I know, there is no plugin that provides compilation of coffeescript.

Is there a compiler plugin for maven that can be parameterized using the compiler (for any programming language)?

+6
maven-2 coffeescript
source share
2 answers

Is there a compiler plugin for maven that can be parameterized using the compiler (for any programming language)?

This actually happens with the Maven Compiler plugin, see Using Non-Javac Compilers . Thus, it can be imagined that to implement compilation, the compiler compiles the compiler.

+3
source share
+3
source share

All Articles