All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codehaus.mojo.was6.AbstractEjbMojo Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.2.1
Show newest version
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