Fork me on GitHub

Plugin Documentation

Goals available for this plugin:

Goal Description
javassist:help Display help information on javassist-maven-plugin.
Call mvn javassist:help -Ddetail=true -Dgoal=<goal-name> to display parameter details.
javassist:javassist Maven plugin that will apply Javassist class transformations on compiled classes (bytecode instrumentation).

The real modifications of the bytecode are performed by one or more instances of the configured IClassTransformer.

Example plugin configuration :


...
<configuration>
  <includeTestClasses>false</includeTestClasses>
  <buildDir>bin/classes</buildDir>
  <testBuildDir>bin/test-classes</testBuildDir>
  <transformerClasses>
    <transformerClass>
     <className>
      de.icongmbh.oss.maven.plugin.javassist.example.transformer.MethodCallClassTransformer
     </className>
    </transformerClass>
  </transformerClasses>
</configuration>
...

System Requirements

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

Maven 2.0
JDK 1.8
Memory No minimum requirement.
Disk Space No minimum requirement.

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>de.icongmbh.oss.maven.plugins</groupId>
          <artifactId>javassist-maven-plugin</artifactId>
          <version>2.0.3-SNAPSHOT</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>de.icongmbh.oss.maven.plugins</groupId>
        <artifactId>javassist-maven-plugin</artifactId>
        <version>2.0.3-SNAPSHOT</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

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