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

org.apache.maven.plugin.assembly.archive.AssemblyArchiver Maven / Gradle / Ivy

Go to download

A Maven plugin to create archives of your project's sources, classes, dependencies etc. from flexible assembly descriptors.

There is a newer version: 3.7.1
Show newest version
package org.apache.maven.plugin.assembly.archive;

/*
 * 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.plugin.assembly.AssemblerConfigurationSource;
import org.apache.maven.plugin.assembly.InvalidAssemblerConfigurationException;
import org.apache.maven.plugin.assembly.format.AssemblyFormattingException;
import org.apache.maven.plugin.assembly.model.Assembly;

import java.io.File;

/**
 * Creates an archive
 * @version $Id: AssemblyArchiver.java 1641677 2014-11-25 19:44:07Z krosenvold $
 */
public interface AssemblyArchiver
{
    String ROLE = AssemblyArchiver.class.getName();

    /**
     * Create the assembly archive. Generally:
     * 
    *
  1. Setup any directory structures for temporary files
  2. *
  3. Calculate the output directory/file for the assembly
  4. *
  5. Setup any handler components for special descriptor files we may encounter
  6. *
  7. Lookup and configure the {@link org.codehaus.plexus.archiver.Archiver} to be used
  8. *
  9. Determine what, if any, dependency resolution will be required, and resolve any dependency-version conflicts * up front to produce a managed-version map for the whole assembly process.
  10. *
  11. Iterate through the available {@link org.apache.maven.plugin.assembly.archive.phase.AssemblyArchiverPhase} * instances, executing each to handle a different * top-level section of the assembly descriptor, if that section is present.
  12. *
* * @param assembly The {@link Assembly} * @param fullName The full name. * @param format The format. * @param configSource The {@link AssemblerConfigurationSource} * @param recompressZippedFiles recompress zipped files. * @return The resulting archive file. * @throws ArchiveCreationException when creation fails * @throws AssemblyFormattingException when formatting fails * @throws InvalidAssemblerConfigurationException when the configurationis bad */ File createArchive( Assembly assembly, String fullName, String format, AssemblerConfigurationSource configSource, boolean recompressZippedFiles ) throws ArchiveCreationException, AssemblyFormattingException, InvalidAssemblerConfigurationException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy