• 0.6.20

Plugin Documentation

This report describes goals, parameters details, requirements and sample usage of this plugin.

Goals

Goals available for this plugin:

Goal Description
jeo:assemble Converts EO to bytecode. In other words, it assembles low-lever representation EO to bytecode that JVM can execute. The mojo that converts EO to bytecode only. It does not apply any improvements.
jeo:disassemble Converts bytecode to EO. In other words, it disassembles bytecode to low-level EO representation that contains opcodes and their values. The mojo that converts bytecode to EO only. It does not apply any improvements. It does not convert EO to bytecode back.
jeo:help Display help information on jeo-maven-plugin.
Call mvn jeo:help -Ddetail=true -Dgoal=<goal-name> to display parameter details.
jeo:unroll-phi This mojo unrolls all the changes made by PHI/UNPHI transformations. In other words, it makes XMIR understandable by jeo-maven-plugin after PHI/UNPHI transformations.

System Requirements

The following specifies the minimum requirements to run this Maven plugin:

Maven 4.0.0-alpha-7
JDK 1.8

System Requirements History

The following specifies the minimum requirements to run this Maven plugin for historical versions:

Plugin Version Maven JDK
from 0.4.6 to 0.6.19 - 8
from 0.1.0 to 0.4.5 - 11
0.0.1 - 8

Usage

You should specify the version in your project's plugin configuration:

<project>
  ...
  <build>
    <!-- To define the plugin version in your parent POM -->
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.eolang</groupId>
          <artifactId>jeo-maven-plugin</artifactId>
          <version>0.6.20</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>org.eolang</groupId>
        <artifactId>jeo-maven-plugin</artifactId>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

For more information, see "Guide to Configuring Plug-ins"