You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2017/08/27 11:35:08 UTC

svn commit: r1806351 - /maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugins/ear/AcrModule.java

Author: khmarbaise
Date: Sun Aug 27 11:35:08 2017
New Revision: 1806351

URL: http://svn.apache.org/viewvc?rev=1806351&view=rev
Log:
[MEAR-226] bundleFileName functionality for the acr plugin
 o Added AcrModule implementation to make bundleFileName
   configuration possible.

Added:
    maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugins/ear/AcrModule.java

Added: maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugins/ear/AcrModule.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugins/ear/AcrModule.java?rev=1806351&view=auto
==============================================================================
--- maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugins/ear/AcrModule.java (added)
+++ maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugins/ear/AcrModule.java Sun Aug 27 11:35:08 2017
@@ -0,0 +1,120 @@
+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.
+ * <p/>
+ * 
+ * @author <a href="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;
+    }
+}