package org.apache.maven.archiver; /* * 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 java.io.File; import java.util.LinkedHashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; /** * Capture common archive configuration. * * @author <a href="mailto:brett@apache.org">Brett Porter</a> * @version $Id$ */ // TODO Is this general enough to be in Plexus Archiver? public class MavenArchiveConfiguration { private boolean compress = true; private boolean recompressAddedZips = true; private boolean index; private boolean addMavenDescriptor = true; private File manifestFile; //TODO: Rename this attribute to manifestConfiguration; private ManifestConfiguration manifest; private Map<String, String> manifestEntries = new LinkedHashMap<String, String>(); private List<ManifestSection> manifestSections = new LinkedList<ManifestSection>(); /** * @since 2.2 */ private boolean forced = true; /** * @since 2.3 */ private File pomPropertiesFile; /** * @return {@link #compress} */ public boolean isCompress() { return compress; } /** * @return {@link #recompressAddedZips} */ public boolean isRecompressAddedZips() { return recompressAddedZips; } /** * @param recompressAddedZips {@link #recompressAddedZips} */ public void setRecompressAddedZips( boolean recompressAddedZips ) { this.recompressAddedZips = recompressAddedZips; } /** * @return {@link #index} */ public boolean isIndex() { return index; } /** * @return {@link #addMavenDescriptor} */ public boolean isAddMavenDescriptor() { return addMavenDescriptor; } /** * @return {@link #manifestFile} */ public File getManifestFile() { return manifestFile; } /** * @return {@link #manifest} */ //TODO: Change the name of this method into getManifestConfiguration() public ManifestConfiguration getManifest() { if ( manifest == null ) { manifest = new ManifestConfiguration(); } return manifest; } /** * @param compress set compress to true/false. */ public void setCompress( boolean compress ) { this.compress = compress; } /** * @param index set index to true/false. */ public void setIndex( boolean index ) { this.index = index; } /** * @param addMavenDescriptor activate to add maven descriptor or not. */ public void setAddMavenDescriptor( boolean addMavenDescriptor ) { this.addMavenDescriptor = addMavenDescriptor; } /** * @param manifestFile The manifest file. */ public void setManifestFile( File manifestFile ) { this.manifestFile = manifestFile; } /** * @param manifest {@link ManifestConfiguration} */ public void setManifest( ManifestConfiguration manifest ) { this.manifest = manifest; } /** * @param key The key of the entry. * @param value The value of the entry. */ public void addManifestEntry( String key, String value ) { manifestEntries.put( key, value ); } /** * @param map The whole map which should be added. */ public void addManifestEntries( Map<String, String> map ) { manifestEntries.putAll( map ); } /** * @return are there entries true yes false otherwise. */ public boolean isManifestEntriesEmpty() { return manifestEntries.isEmpty(); } /** * @return {@link #manifestEntries} */ public Map<String, String> getManifestEntries() { return manifestEntries; } /** * @param manifestEntries {@link #manifestEntries} */ public void setManifestEntries( Map<String, String> manifestEntries ) { this.manifestEntries = manifestEntries; } /** * @param section {@link ManifestSection} */ public void addManifestSection( ManifestSection section ) { manifestSections.add( section ); } /** * @param list Added list of {@link ManifestSection}. */ public void addManifestSections( List<ManifestSection> list ) { manifestSections.addAll( list ); } /** * @return if manifestSections is empty or not. */ public boolean isManifestSectionsEmpty() { return manifestSections.isEmpty(); } /** * @return {@link #manifestSections} */ public List<ManifestSection> getManifestSections() { return manifestSections; } /** * @param manifestSections set The list of {@link ManifestSection}. */ public void setManifestSections( List<ManifestSection> manifestSections ) { this.manifestSections = manifestSections; } /** * <p> * Returns, whether recreating the archive is forced (default). Setting this option to false means, that the * archiver should compare the timestamps of included files with the timestamp of the target archive and rebuild the * archive only, if the latter timestamp precedes the former timestamps. Checking for timestamps will typically * offer a performance gain (in particular, if the following steps in a build can be suppressed, if an archive isn't * recrated) on the cost that you get inaccurate results from time to time. In particular, removal of source files * won't be detected. * </p> * <p> * An archiver doesn't necessarily support checks for uptodate. If so, setting this option to true will simply be * ignored. * </p> * * @return True, if the target archive should always be created; false otherwise * @see #setForced(boolean) */ public boolean isForced() { return forced; } /** * <p> * Sets, whether recreating the archive is forced (default). Setting this option to false means, that the archiver * should compare the timestamps of included files with the timestamp of the target archive and rebuild the archive * only, if the latter timestamp precedes the former timestamps. Checking for timestamps will typically offer a * performance gain (in particular, if the following steps in a build can be suppressed, if an archive isn't * recrated) on the cost that you get inaccurate results from time to time. In particular, removal of source files * won't be detected. * </p> * <p> * An archiver doesn't necessarily support checks for uptodate. If so, setting this option to true will simply be * ignored. * </p> * * @param forced True, if the target archive should always be created; false otherwise * @see #isForced() */ public void setForced( boolean forced ) { this.forced = forced; } /** * Returns the location of the "pom.properties" file. May be null, in which case a default value is choosen. * * @return "pom.properties" location or null. */ public File getPomPropertiesFile() { return pomPropertiesFile; } /** * Sets the location of the "pom.properties" file. May be null, in which case a default value is choosen. * * @param pomPropertiesFile "pom.properties" location or null. */ public void setPomPropertiesFile( File pomPropertiesFile ) { this.pomPropertiesFile = pomPropertiesFile; } }