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 | Assembles XMIR representation of Java bytecode into executable class files.
This Maven plugin converts low-level EO representation (in XMIR format) into Java bytecode that can be executed by the Java Virtual Machine. The plugin performs pure assembly without applying any optimizations or improvements to the bytecode. The plugin supports optional bytecode verification to ensure generated classes are valid and can be loaded by the JVM. |
jeo:disassemble | Disassembles Java bytecode into XMIR representation.
This Maven plugin converts compiled Java class files into low-level EO representation (in XMIR format) that contains JVM opcodes and their operands. The resulting XMIR files preserve all bytecode instructions and can be assembled back into executable class files. The plugin supports different disassembly modes to control the level of detail in the output, including debug information such as line numbers and variable names. |
jeo:help | Display help information on jeo-maven-plugin.
Call mvn jeo:help -Ddetail=true -Dgoal=<goal-name> to display parameter details. |
System Requirements
The following specifies the minimum requirements to run this Maven plugin:
Maven | 4.0.0-alpha-7 |
JDK | 11 |
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.13.8 | - | 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.13.9</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"