debian/0000755000000000000000000000000012235710361007166 5ustar debian/patches/0000755000000000000000000000000012235710102010606 5ustar debian/patches/descriptors.patch0000644000000000000000000000140712235704116014202 0ustar --- a/src/main/java/org/apache/maven/plugin/assembly/mojos/AbstractAssemblyMojo.java +++ b/src/main/java/org/apache/maven/plugin/assembly/mojos/AbstractAssemblyMojo.java @@ -208,7 +208,7 @@ /** * Maven ProjectHelper. * - * @component + * @component role="org.apache.maven.project.MavenProjectHelper" */ private MavenProjectHelper projectHelper; @@ -289,12 +289,12 @@ private boolean attach; /** - * @component + * @component role="org.apache.maven.plugin.assembly.archive.AssemblyArchiver" */ private AssemblyArchiver assemblyArchiver; /** - * @component + * @component role="org.apache.maven.plugin.assembly.io.AssemblyReader" */ private AssemblyReader assemblyReader; debian/patches/series0000644000000000000000000000006612235701566012043 0ustar descriptors.patch plexus-archiver-compatibility.patch debian/patches/plexus-archiver-compatibility.patch0000644000000000000000000000240612235710102017621 0ustar Description: Ensures the compatibility with the version of plexus-archiver available in Debian. This patch can be dropped after upgrading to maven-assembly-plugin 2.2 or later. Author: Emmanuel Bourg Forwarded: not-needed --- a/src/main/java/org/apache/maven/plugin/assembly/archive/archiver/AssemblyProxyArchiver.java +++ b/src/main/java/org/apache/maven/plugin/assembly/archive/archiver/AssemblyProxyArchiver.java @@ -75,6 +75,11 @@ private Set seenPaths = new HashSet(); + /** + * @since 2.2-beta-6 + */ + private boolean useJvmChmod; + public AssemblyProxyArchiver( String rootPrefix, Archiver delegate, List containerDescriptorHandlers, List extraSelectors, List extraFinalizers, Logger logger ) { @@ -897,4 +902,23 @@ } } + public boolean isUseJvmChmod() + { + return useJvmChmod; + } + + public void setUseJvmChmod( final boolean useJvmChmod ) + { + this.useJvmChmod = useJvmChmod; + } + + public boolean isIgnorePermissions() + { + return delegate.isIgnorePermissions(); + } + + public void setIgnorePermissions( boolean ignorePermissions ) + { + delegate.setIgnorePermissions( ignorePermissions ); + } } debian/source/0000755000000000000000000000000011674373126010500 5ustar debian/source/format0000644000000000000000000000001411674373126011706 0ustar 3.0 (quilt) debian/maven.rules0000644000000000000000000000073612235701566011365 0ustar org.apache.maven.shared file-management jar s/.*/debian/ * * org.apache.maven.shared maven-common-artifact-filters jar s/.*/debian/ * * org.apache.maven.shared maven-repository-builder jar s/.*/debian/ * * org.apache.maven.shared maven-shared-io jar s/.*/debian/ * * org.codehaus.modello modello-maven-plugin maven-plugin s/.*/1.1/ * * org.codehaus.plexus plexus-container-default jar s/1\.0-alpha.*/1.0-alpha/ * * org.codehaus.plexus plexus-interpolation jar s/.*/debian/ * * debian/control0000644000000000000000000000463012235701566010603 0ustar Source: maven-assembly-plugin Section: java Priority: optional Maintainer: Debian Java Maintainers Uploaders: Ludovic Claude , Damien Raude-Morvan Build-Depends: cdbs, debhelper (>= 9), default-jdk, maven-debian-helper Build-Depends-Indep: libmaven-archiver-java, libmaven-common-artifact-filters-java, libmaven-file-management-java, libmaven-invoker-plugin-java (>= 1.3), libmaven-plugin-testing-java, libmaven-plugin-tools-java (>= 2.5), libmaven-repository-builder-java, libmaven-shared-io-java, libmaven2-core-java, libmodello-maven-plugin-java (>= 1.1), libplexus-active-collections-java, libplexus-archiver-java, libplexus-container-default-java, libplexus-interpolation-java, libplexus-io-java, libplexus-maven-plugin-java (>= 1.3.8-5), libplexus-utils-java Standards-Version: 3.9.5 Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/maven-assembly-plugin Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/maven-assembly-plugin/ Homepage: http://maven.apache.org/plugins/maven-assembly-plugin/ Package: libmaven-assembly-plugin-java Architecture: all Depends: ${maven:Depends}, ${misc:Depends} Recommends: ${maven:OptionalDepends} Description: Maven Assembly Plugin Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. . Maven's primary goal is to allow a developer to comprehend the complete state of a development effort in the shortest period of time. In order to attain this goal there are several areas of concern that Maven attempts to deal with: . * Making the build process easy * Providing a uniform build system * Providing quality project information * Providing guidelines for best practices development * Allowing transparent migration to new features . The Maven Assembly plugin is used to create archives of your project's sources, classes, dependencies etc. from flexible assembly descriptors. debian/maven.properties0000644000000000000000000000002511275136613012414 0ustar maven.test.skip=true debian/libmaven-assembly-plugin-java.poms0000644000000000000000000000316012235701566015722 0ustar # List of POM files for the package # Format of this file is: # [option]* # where option can be: # --ignore: ignore this POM and its artifact if any # --ignore-pom: don't install the POM. To use on POM files that are created # temporarily for certain artifacts such as Javadoc jars. [mh_install, mh_installpoms] # --no-parent: remove the tag from the POM # --package=: an alternative package to use when installing this POM # and its artifact # --has-package-version: to indicate that the original version of the POM is the same as the upstream part # of the version for the package. # --keep-elements=: a list of XML elements to keep in the POM # during a clean operation with mh_cleanpom or mh_installpom # --artifact=: path to the build artifact associated with this POM, # it will be installed when using the command mh_install. [mh_install] # --java-lib: install the jar into /usr/share/java to comply with Debian # packaging guidelines # --usj-name=: name to use when installing the library in /usr/share/java # --usj-version=: version to use when installing the library in /usr/share/java # --no-usj-versionless: don't install the versionless link in /usr/share/java # --dest-jar=: the destination for the real jar. # It will be installed with mh_install. [mh_install] # --classifier=: Optional, the classifier for the jar. Empty by default. # --site-xml=: Optional, the location for site.xml if it needs to be installed. # Empty by default. [mh_install] # pom.xml --no-parent debian/compat0000644000000000000000000000000212235701566010373 0ustar 9 debian/maven.ignoreRules0000644000000000000000000000002012235701566012513 0ustar * * * * * test debian/watch0000644000000000000000000000025211275136613010223 0ustar version=3 opts="uversionmangle=s/-(alpha|beta)-/~$1/" \ http://svn.apache.org/repos/asf/maven/plugins/tags/ \ maven-assembly-plugin-(\d.*)/ debian debian/orig-tar.sh debian/changelog0000644000000000000000000000323412235701566011051 0ustar maven-assembly-plugin (2.2~beta5-3) unstable; urgency=low * Team upload. * Patched to work with plexus-archiver 1.2 (Closes: #727664) * debian/control: - Updated Standards-Version to 3.9.5 (no changes) - Use canonical URLs for the Vcs-* fields - Removed Michael Koch from the uploaders (Closes: #654109) * debian/copyright: Updated to the Copyright Format 1.0 * Build depend on debhelper >= 9 -- Emmanuel Bourg Mon, 04 Nov 2013 10:09:32 +0100 maven-assembly-plugin (2.2~beta5-2) unstable; urgency=low [ Torsten Werner ] * Fix the ignore rule for the test dependencies. (Closes: #591134) [ Miguel Landaeta ] * Drop unnecessary Build-Depends on quilt. * Bump Standards-Version to 3.9.1. No changes were required. -- Torsten Werner Wed, 04 Aug 2010 05:35:15 +0200 maven-assembly-plugin (2.2~beta5-1) unstable; urgency=low * Team upload * New upstream version (Closes: #577883) * Switch to source format 3.0. * Update Standards-Version: 3.8.4. -- Torsten Werner Thu, 15 Apr 2010 18:15:56 +0200 maven-assembly-plugin (2.2~beta4-2) unstable; urgency=low [ Michael Koch ] * Tightened B-D on libmodulo-maven-plugin-java. * Added myself to Uploaders. * Updated Standards-Version to 3.8.3. [ Damien Raude-Morvan ] * Add myself to Uploaders * Tightened B-D on libplexus-maven-plugin-java (Closes: #545645) -- Damien Raude-Morvan Mon, 26 Oct 2009 20:32:57 +0100 maven-assembly-plugin (2.2~beta4-1) unstable; urgency=low * Initial version (closes: #518340) -- Ludovic Claude Tue, 30 Jun 2009 17:22:48 +0100 debian/copyright0000644000000000000000000000350012235701566011126 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Maven Assembly Plugin Upstream-Contact: Apache Maven team Source: http://maven.apache.org/ Files: * Copyright: 2001-2009, The Apache Software Foundation. License: Apache-2.0 Files: src/main/java/org/apache/maven/plugin/assembly/utils/CommandLineUtils.java Copyright: 2004, The Codehaus License: MIT Files: debian/* Copyright: Copyright 2009, Ludovic Claude License: GPL-3+ License: Apache-2.0 On Debian GNU/Linux system you can find the complete text of the Apache 2.0 license in '/usr/share/common-licenses/Apache-2.0'. License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: GPL-3+ On Debian GNU/Linux system you can find the complete text of the GPL-3 license in '/usr/share/common-licenses/GPL-3' debian/rules0000755000000000000000000000045611674373126010265 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/maven.mk JAVA_HOME := /usr/lib/jvm/default-java DEB_PATCHPOMS_ARGS := --ignore-rules=debian/maven.ignoreRules get-orig-source: uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename debian/README.source0000644000000000000000000000046111275136613011353 0ustar Information about maven-assembly-plugin ------------------------------ This package was debianized using the mh_make command from the maven-debian-helper package. The build system uses Maven but prevents it from downloading anything from the Internet, making the build compliant with the Debian policy. debian/orig-tar.sh0000755000000000000000000000075711275136613011267 0ustar #!/bin/sh -e VERSION=$2 TAR=../maven-assembly-plugin_$VERSION.orig.tar.gz DIR=maven-assembly-plugin-$VERSION TAG=$(echo "maven-assembly-plugin-$VERSION" | sed -re's/~(alpha|beta)/-\1-/') svn export http://svn.apache.org/repos/asf/maven/plugins/tags/${TAG} $DIR GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude '*.class' $DIR rm -rf $DIR ../$TAG # move to directory 'tarballs' if [ -r .svn/deb-layout ]; then . .svn/deb-layout mv $TAR $origDir && echo "moved $TAR to $origDir" fi