debian/0000755000000000000000000000000012173655721007177 5ustar debian/maven.rules0000644000000000000000000000027512172610117011352 0ustar org.apache.maven maven-parent pom s/.*/debian/ * * classworlds classworlds * s/.*/debian/ * * junit junit * s/.*/3.x/ * * org.codehaus.plexus plexus-container-default * s/.*/1.0-alpha/ * * debian/README.Debian0000644000000000000000000000044312172610117011226 0ustar maven-ant-tasks for Debian -------------------------- The original package used the shade plugin and built a jar with all the dependencies included. This has been modified by the debian specific patch. -- Ramakrishnan Muthukrishnan , Wed, 14 Jul 2010 13:39:06 +0530 debian/watch0000644000000000000000000000016412172610117010216 0ustar version=3 http://svn.apache.org/repos/asf/maven/ant-tasks/tags/ \ maven-ant-tasks-(.*)/ debian debian/orig-tar.sh debian/rules0000755000000000000000000000060512172610117010245 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 := -idebian/maven.ignoreRules get-orig-source: uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename clean:: rm -f debian/maven.cleanIgnoreRules debian/maven.ignoreRules debian/maven.publishedRules debian/changelog0000644000000000000000000000257712172610117011051 0ustar maven-ant-tasks (2.1.3-3) unstable; urgency=low [ Miguel Landaeta ] * Add symlink for maven-ant-tasks jar in /usr/share/ant/lib. (Closes: #687271). [ Emmanuel Bourg ] * Added a patch to fix the source compatibility with Ant 1.9 (Closes: #717253) * debian/control: - Updated Standards-Version to 3.9.4 (no changes) - Removed the unused substitution variable ${shlibs:Depends} - Use canonical URLs for the Vcs-* fields -- Emmanuel Bourg Sun, 21 Jul 2013 00:28:08 +0200 maven-ant-tasks (2.1.3-2) unstable; urgency=low * Team upload. * Re-enable shade plugin to conform to upstream behavior. * Bump Standards-Version to 3.9.2: no changes needed. * Add Build-Depends on libmaven-parent-java. * d/copyright: Remove template string. -- Damien Raude-Morvan Thu, 08 Dec 2011 01:04:45 +0100 maven-ant-tasks (2.1.3-1) unstable; urgency=low * Team upload. * New upstream version. * Remove useless Build-Depends: quilt. (Closes: #643487) * Improve short Description. -- Torsten Werner Tue, 27 Sep 2011 19:28:22 +0200 maven-ant-tasks (2.0.10-1) unstable; urgency=low * Initial release (Closes: #589004) * debian/patches: adds a patch to remove the use of maven shade plugin and creation of uber-jars. -- Ramakrishnan Muthukrishnan Tue, 13 Jul 2010 19:13:49 +0530 debian/patches/0000755000000000000000000000000012172610117010613 5ustar debian/patches/01_ant-1.9-compatibility.patch0000644000000000000000000000325012172610117016072 0ustar Description: Fixes the source compatibility with Ant 1.9 Author: Emmanuel Bourg Bug: http://jira.codehaus.org/browse/MANTTASKS-241 --- a/src/main/java/org/apache/maven/artifact/ant/util/AntUtil.java +++ b/src/main/java/org/apache/maven/artifact/ant/util/AntUtil.java @@ -49,9 +49,9 @@ * @param props properties Hashtable to copy to the new project. * @param project the project where the properties are added */ - public static void copyProperties( Hashtable props, Project project ) + public static void copyProperties( Hashtable props, Project project ) { - for ( Map.Entry entry : props.entrySet() ) + for ( Map.Entry entry : props.entrySet() ) { String key = entry.getKey(); if ( "basedir".equals( key ) || "ant.file".equals( key ) ) @@ -64,7 +64,7 @@ if ( project.getProperty( key ) == null ) { // no user property - project.setNewProperty( key, entry.getValue() ); + project.setNewProperty( key, (String) entry.getValue() ); } } } @@ -87,9 +87,9 @@ * @param refs * @param project */ - public static void copyReferences( Hashtable refs, Project project ) + public static void copyReferences( Hashtable refs, Project project ) { - for ( Map.Entry entry : refs.entrySet() ) + for ( Map.Entry entry : refs.entrySet() ) { String key = entry.getKey(); // don't overwrite existing references debian/patches/series0000644000000000000000000000003712172610117012030 0ustar 01_ant-1.9-compatibility.patch debian/libmaven-ant-tasks-java.poms0000644000000000000000000000270212172610117014504 0ustar # List of POM files for the package # Format of this file is: # [option]* # where option can be: # --ignore: ignore this POM or # --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 # --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. # --classifier=: Optional, the classifier for the jar. Empty by default. # --ignore-pom: don't install the POM with mh_install or mh_installpoms. To use with POM files that are created # temporarily for certain artifacts such as Javadoc jars. # pom.xml --java-lib debian/docs0000644000000000000000000000000012172610117010025 0ustar debian/orig-tar.sh0000755000000000000000000000054212172610117011250 0ustar #!/bin/sh -e TAR=../maven-ant-tasks_$2.orig.tar.gz DIR=maven-ant-tasks-$2 TAG=maven-ant-tasks-$2 svn export http://svn.apache.org/repos/asf/maven/ant-tasks/tags/$TAG $DIR tar -c -z -f $TAR $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 debian/source/0000755000000000000000000000000012172610117010464 5ustar debian/source/format0000644000000000000000000000001412172610117011672 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000212172610117010362 0ustar 7 debian/libmaven-ant-tasks-java.links0000644000000000000000000000011212172610117014637 0ustar usr/share/java/maven-ant-tasks.jar usr/share/ant/lib/maven-ant-tasks.jar debian/copyright0000644000000000000000000000130712172610117011120 0ustar This work was packaged for Debian by: Ramakrishnan Muthukrishnan on Tue, 13 Jul 2010 19:13:49 +0530 It was downloaded from: Upstream Authors: Paul Gier Benjamin Bentmann Herve Boutemy and others. Copyright: Copyright (C) 2002-2009 Apache Software Foundation. License: The Apache Software License, Version 2.0 The Debian packaging is: Copyright (C) 2010 Ramakrishnan Muthukrishnan and is licensed under the GPL version 3, see "/usr/share/common-licenses/GPL-3". debian/control0000644000000000000000000000247012172610117010572 0ustar Source: maven-ant-tasks Section: java Priority: optional Maintainer: Debian Java Maintainers Uploaders: Ramakrishnan Muthukrishnan , Emmanuel Bourg Build-Depends: cdbs, debhelper (>= 7), default-jdk, maven-debian-helper Build-Depends-Indep: ant, libmaven-assembly-plugin-java, libmaven-invoker-plugin-java, libmaven-parent-java, libmaven-shade-plugin-java, libmaven2-core-java Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/pkg-java/maven-ant-tasks.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/maven-ant-tasks.git Homepage: http://maven.apache.org/ant-tasks/ Package: libmaven-ant-tasks-java Architecture: all Depends: ${misc:Depends} Description: use Maven's artifact handling features from Ant The Mavent Ant Tasks allow several of Maven's artifact handling features to be used from within an Ant build. These include: . * Dependency management - including transitive dependencies, scope recognition and SNAPSHOT handling. * Artifact deployment - deployment to a Maven repository (file integrated, other with extensions) * POM processing - for reading and writing a Maven 2 pom.xml file.