PR: MNG-699

Submitted by:  Piotr Bzdyl
Reviewed by:  Stephane Nicoll
Implementation of an EJB3 plugin

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@329227 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephane Nicoll 2005-10-28 15:51:25 +00:00
parent e09022e394
commit 7381f53a18
2 changed files with 173 additions and 0 deletions

View File

@ -0,0 +1,24 @@
<model>
<parent>
<artifactId>maven-plugin-parent</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>2.0-beta-1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>maven-ejb3-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>Maven EJB3 plugin</name>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-archiver</artifactId>
<version>2.0-beta-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.0-beta-1-SNAPSHOT</version>
</dependency>
</dependencies>
</model>

View File

@ -0,0 +1,149 @@
package org.apache.maven.plugin.ejb3;
/*
* Copyright 2001-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import org.apache.maven.archiver.MavenArchiveConfiguration;
import org.apache.maven.archiver.MavenArchiver;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.project.MavenProject;
import org.codehaus.plexus.util.FileUtils;
import java.io.File;
import java.io.IOException;
/**
* Builds J2EE EJB3 archive.
*
* @author <a href="piotr@bzdyl.net">Piotr Bzdyl</a>
* @version $Id$
* @goal ejb3
* @phase package
* @description build an ejb3
*
* @todo Add deployment descriptor file handling
*/
public class Ejb3Mojo
extends AbstractMojo
{
private static final String[] DEFAULT_EXCLUDES = new String[]{"**/package.html"};
private static final String[] DEFAULT_INCLUDES = new String[]{"**/**"};
/**
* Directory containing the generated EJB3.
*
* @parameter expression="${project.build.directory}"
* @required
* @readonly
*/
private File basedir;
/**
* Name of the generated EJB3.
*
* @parameter alias="parName" expression="${project.build.finalName}"
* @required
*/
private String finalName;
/**
* Directory containing the classes.
*
* @parameter expression="${project.build.outputDirectory}"
* @required
* @readonly
*/
private File outputDirectory;
/**
* Single directory for extra files to include in the ejb3.
*
* @parameter expression="${basedir}/src/main/ejb3"
* @required
*/
private File ejb3SourceDirectory;
/**
* The maven project.
*
* @parameter expression="${project}"
* @required
* @readonly
*/
private MavenProject project;
/**
* The maven archiver to use.
*
* @parameter
*/
private MavenArchiveConfiguration archive = new MavenArchiveConfiguration();
/**
* Generates the EJB3.
*
* @todo Add license files in META-INF directory.
*/
public void execute()
throws MojoExecutionException
{
// Copy source files
try
{
if ( ejb3SourceDirectory != null
&& ejb3SourceDirectory.exists() )
{
getLog().info( "Copy ejb3 resources to " + outputDirectory.getAbsolutePath() );
FileUtils.copyDirectoryStructure( ejb3SourceDirectory, outputDirectory );
}
}
catch ( IOException e )
{
throw new MojoExecutionException( "Error copying EJB3 resources", e );
}
File ejb3File = new File( basedir, finalName + ".ejb3" );
MavenArchiver archiver = new MavenArchiver();
archiver.setOutputFile( ejb3File );
try
{
if ( outputDirectory == null || !outputDirectory.exists() )
{
getLog().warn( "EJB3 will be empty - no content was marked for inclusion!" );
}
else
{
archiver.getArchiver().addDirectory( outputDirectory, DEFAULT_INCLUDES, DEFAULT_EXCLUDES );
}
archiver.createArchive( project, archive );
project.getArtifact().setFile( ejb3File );
}
catch ( Exception e )
{
// TODO: improve error handling
throw new MojoExecutionException( "Error assembling EJB3", e );
}
}
}