Apache Maven 1.x has reached its end of life, and is no longer supported. For more information, see the announcement. Users are encouraged to migrate to the current version of Apache Maven.

Deprecation Warning

This plugin has been removed from the current Maven distribution, it is not maintained by the Maven team anymore. Please check the Plugins History page to find out the last Maven version that included this plugin.

Maven JDEE Plugin

A plugin to create a project file to be used by JDEE (Java Development Enviroment for Emacs) to make it a little easier for Emacs users to switch to maven.

The most important part is the initialization of jde-global-classpath variable. The generated project file has this variable set to contain all dependencies (normally jarfiles) as listed in the project descriptor.

The following table can give you an overview about the mapping between Maven properties and JDEE variables:

Maven property/ constant value JDEE variable
pom.artifactId jde-project-name
maven.jdee.project.file (see Properties for details) jde-project-file-name
pom.build.sourceDirectory jde-sourcepath
./target/classes jde-compile-option-directory
target.classes.* jde-import-excluded-packages

Prevent the generated class files from being included into the list of possible imports.

./target/docs/apidocs jde-javadoc-gen-destination-directory
${pom.name} - ${pom.organization} (${pom.inceptionYear}) jde-javadoc-gen-window-title

For more information on the functionality provided by this plugin, please see the Goals document.

This plugin is flexible by providing configurable properties see the properties for details.