org.codehaus.mojo.was6.AbstractEjbMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of was6-maven-plugin Show documentation
Show all versions of was6-maven-plugin Show documentation
Tools for working with IBM WebSphere 6.0.x and 6.1.x. This plugin works along
with an installation of WebSphere Application Server or Process Server -
standalone or ND installation, to provide automated tasks for: generating RMIC stubs,
starting/stopping servers, installing/updating/uninstalling EARs to
application servers, run serviceDeploy and run arbitrary scripts with wsadmin.
package org.codehaus.mojo.was6;
import java.io.File;
/**
* Common superclass for EJB related goals.
*
* @author David J. M. Karlsen
*/
public abstract class AbstractEjbMojo
extends AbstractWas6Mojo
{
/**
* Directory to hold generated sources.
*
* @parameter expression="${was6.generatedSourcesDirectory}" default-value="${project.build.directory}/generated-sources/was6-maven-plugin"
* @required
*/
private File generatedSourcesDirectory;
/**
* Directory to hold generated classes.
*
* @parameter expression="${was6.generatedClassesDirectory}" default-value="${project.build.directory}/generated-classes/was6-maven-plugin"
* @required
*/
private File generatedClassesDirectory;
/**
* Directory containing generated sources.
*/
protected File getGeneratedSourcesDirectory()
{
return generatedSourcesDirectory;
}
/**
* Directory containing generated classes.
*/
protected File getGeneratedClassesDirectory()
{
return generatedClassesDirectory;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy