Plugin to allow to compile Mirah code with Maven.
- Add the plugin to your pom.xml
<build> ... <plugin> <groupId>org.mirah.maven</groupId> <artifactId>maven-mirah-plugin</artifactId> <executions> <execution> <phase>compile</phase> <goals><goal>compile</goal></goals> </execution> </executions> </plugin> ... </build>
- Execute
mvn compile
Those are the options that can be modified for this plugin, this example shows the
default ones so we just need to modify them into the plugin declaration:
<plugin> ... <configuration> <sourceDirectory>src/main/mirah</sourceDirectory> <outputDirectory>target/classes</outputDirectory> <verbose>false</verbose> ... </plugin>
If you want the plugin to generate java source files from mirah files instead
of compiling your mirah code directly to bytecode, use the generate-sources
phase instead. The resulting java source files will then be compiled by the
normal maven compiler.