blob: 33421269eaa23921dce5471b39a9d834b7472f1d [file] [log] [blame]
package org.apache.maven.plugins.ear;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.artifact.Artifact;
import org.apache.maven.plugin.MojoFailureException;
import org.codehaus.plexus.util.xml.XMLWriter;
import java.util.Set;
/**
* The {@link EarModule} implementation for an Acr Module.
*
* @author <a href="mailto:khmarbaise@apache.org">Karl Heinz Marbaise</a>
* @since 3.0.0
*/
public class AcrModule
extends AbstractEarModule
{
private Boolean includeInApplicationXml = Boolean.FALSE;
private static final String APP_CLIENT = "app-client";
/**
* Create an instance.
*/
public AcrModule()
{
super();
}
/**
* @param a {@link Artifact}
* @param defaultLibBundleDir The default library bundle directory.
* @param includeInApplicationXml Include the application xml or not.
*/
public AcrModule( Artifact a, String defaultLibBundleDir, Boolean includeInApplicationXml )
{
super( a );
setLibBundleDir( defaultLibBundleDir );
this.includeInApplicationXml = includeInApplicationXml;
}
/**
* {@inheritDoc}
*/
public void appendModule( XMLWriter writer, String version, Boolean generateId )
{
// Generates an entry in the application.xml only if
// includeInApplicationXml is set
if ( includeInApplicationXml )
{
startModuleElement( writer, generateId );
writer.startElement( APP_CLIENT );
writer.writeText( getUri() );
writer.endElement();
writeAltDeploymentDescriptor( writer, version );
writer.endElement();
}
}
/**
* {@inheritDoc}
*/
public void resolveArtifact( Set<Artifact> artifacts )
throws EarPluginException, MojoFailureException
{
// Let's resolve the artifact
super.resolveArtifact( artifacts );
// If the defaultLibBundleDir is set and no bundle dir is
// set, set the default as bundle dir
setLibBundleDir( earExecutionContext.getDefaultLibBundleDir() );
}
/**
* {@inheritDoc}
*/
public String getType()
{
return APP_CLIENT;
}
private void setLibBundleDir( String defaultLibBundleDir )
{
if ( defaultLibBundleDir != null && bundleDir == null )
{
this.bundleDir = defaultLibBundleDir;
}
}
/**
* {@inheritDoc}
*/
public boolean changeManifestClasspath()
{
return false;
}
}