
org.apache.maven.plugins.ear.JarModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-ear-plugin Show documentation
Show all versions of maven-ear-plugin Show documentation
Generates a J2EE Enterprise Archive (EAR) file.
The newest version!
/*
* 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.
*/
package org.apache.maven.plugins.ear;
import java.util.Set;
import org.apache.maven.artifact.Artifact;
import org.apache.maven.plugin.MojoFailureException;
import org.codehaus.plexus.util.xml.XMLWriter;
/**
* The {@link EarModule} implementation for a non J2EE module such as third party libraries.
*
* Such module is not incorporated in the generated {@code application.xml}
* but some application servers support it. To include it in the generated
* deployment descriptor anyway, set the {@code includeInApplicationXml} boolean flag.
*
*
* @author Stephane Nicoll
*/
public class JarModule extends AbstractEarModule {
/**
* Default type of the artifact of a non Java EE module such as third party library.
*/
public static final String DEFAULT_ARTIFACT_TYPE = "jar";
private Boolean includeInApplicationXml = Boolean.FALSE;
/**
* Create an instance.
*/
public JarModule() {
this.type = DEFAULT_ARTIFACT_TYPE;
this.classPathItem = true;
}
/**
* @param a {@link Artifact}
* @param defaultLibBundleDir The default library bundle directory.
* @param includeInApplicationXml Include the application xml or not.
*/
public JarModule(Artifact a, String defaultLibBundleDir, Boolean includeInApplicationXml) {
super(a);
setLibBundleDir(defaultLibBundleDir);
this.includeInApplicationXml = includeInApplicationXml;
this.classPathItem = true;
}
/**
* {@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(JAVA_MODULE);
writer.writeText(getUri());
writer.endElement();
writeAltDeploymentDescriptor(writer, version);
writer.endElement();
}
}
/**
* {@inheritDoc}
*/
public void resolveArtifact(Set 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());
}
private void setLibBundleDir(String defaultLibBundleDir) {
if (defaultLibBundleDir != null && bundleDir == null) {
this.bundleDir = defaultLibBundleDir;
}
}
/**
* {@inheritDoc}
*/
public boolean changeManifestClasspath() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy