macalinao / maven-mirah-plugin

Plugin to compile Mirah source with Maven

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Maven Mirah Compiler

Plugin to allow to compile Mirah code with Maven.

Usage

  1. 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>
  1. Execute mvn compile

Configuration options

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>

Generating java code

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.

About

Plugin to compile Mirah source with Maven

License:Other