damiansima / classextendermavenplugin

Other
0 stars 0 forks source link

Class Extender Maven Plugin

The Maven Class Extender plugin alows you to modify java code and make a class extend another given class.

The plug in recieves three parameters:

The result of the plugin execution is that each class in the listed packages in the base directory will end up extending the provided class to extend. It will ofcourse avoid extending classes that are already extending something else.

Usage:

Just add the dependency to your pom.xml file in the build section. Like so:

org.mule.tools class-extender-maven 0.2 validate extend HOME/some_project/target/generated-sources/ org.mule.package_1 org.mule.package_2 ... org.mule.package_n org.mule.AbstractClassToExtend