debian/0000755000000000000000000000000011635436363007200 5ustar debian/maven.rules0000644000000000000000000000360711635436253011366 0ustar # Maven rules - transform Maven dependencies and plugins # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # - a regular expression of the form s/match/replace/ # in this case, elements that match are transformed using # the regex rule. # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., replacing the version with 3.x # junit junit jar s/3\\..*/3.x/ joda-time joda-time jar s/.*/debian/ * * org.apache.maven.doxia doxia-core jar s/.*/debian/ * * org.apache.maven.doxia doxia-decoration-model jar s/.*/debian/ * * org.apache.maven.doxia doxia-logging-api jar s/.*/debian/ * * org.apache.maven.doxia doxia-module-xhtml jar s/.*/debian/ * * org.apache.maven.doxia doxia-sink-api jar s/.*/debian/ * * org.apache.maven.doxia doxia-site-renderer jar s/.*/debian/ * * org.apache.maven.shared maven-doxia-tools jar s/.*/debian/ * * org.apache.maven.shared maven-shared-jar jar s/.*/debian/ * * org.codehaus.plexus plexus-container-default jar s/1\.0-alpha.*/1.0-alpha/ * * org.mortbay.jetty * * s/6\..*/6.x/ * * s/org.apache.maven.shared/org.apache.maven.plugin-testing/ maven-plugin-testing-harness * s/.*/debian/ * * s/org.apache.maven.shared/org.apache.maven.plugin-testing/ maven-plugin-testing-tools * s/.*/debian/ * * s/org.apache.maven.shared/org.apache.maven.plugin-testing/ maven-plugin-testing * s/.*/debian/ * * s/org.apache.maven.shared/org.apache.maven.plugin-testing/ maven-test-tools * s/.*/debian/ * * debian/libmaven-project-info-reports-plugin-java-doc.doc-base.api0000644000000000000000000000070111635436253022207 0ustar Document: libmaven-project-info-reports-plugin-java Title: API Javadoc for Maven Project Info Reports Plugin Author: Maven Project Info Reports Plugin developers Abstract: This is the API Javadoc provided for the libmaven-project-info-reports-plugin-java library. Section: Programming Format: HTML Index: /usr/share/doc/libmaven-project-info-reports-plugin-java/api/index.html Files: /usr/share/doc/libmaven-project-info-reports-plugin-java/api/* debian/copyright0000644000000000000000000000132711635436253011134 0ustar Format: http://dep.debian.net/deps/dep5/ Upstream-Name: Maven Project Info Reports Plugin Upstream-Contact: Johnny R. Ruiz III as Juven Xu as Mindaugas Greibus as Daniel Fernández as Source: http://maven.apache.org/plugins/maven-project-info-reports-plugin/ Files: * Copyright: 2005-2011, Apache Software Foundation License: Apache-2.0 Files: debian/* Copyright: 2011, Torsten Werner License: Apache-2.0 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' debian/libmaven-project-info-reports-plugin-java.poms0000644000000000000000000000273111635436253020202 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 --no-parent --has-package-version debian/libmaven-project-info-reports-plugin-java-doc.install0000644000000000000000000000011611635436253021430 0ustar target/apidocs/* usr/share/doc/libmaven-project-info-reports-plugin-java/api debian/patches/0000755000000000000000000000000011635436253010625 5ustar debian/patches/series0000644000000000000000000000003411635436253012037 0ustar 0001-fix-build-errors.patch debian/patches/0001-fix-build-errors.patch0000644000000000000000000000346311635436253015427 0ustar From: Torsten Werner Date: Thu, 15 Sep 2011 21:53:46 +0200 Subject: fix build errors --- .../maven/report/projectinfo/LicenseReport.java | 3 ++- .../report/projectinfo/MailingListsReport.java | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/maven/report/projectinfo/LicenseReport.java b/src/main/java/org/apache/maven/report/projectinfo/LicenseReport.java index 73ed3b7..c2e5393 100644 --- a/src/main/java/org/apache/maven/report/projectinfo/LicenseReport.java +++ b/src/main/java/org/apache/maven/report/projectinfo/LicenseReport.java @@ -97,8 +97,9 @@ public class LicenseReport return true; } - for ( License license : project.getModel().getLicenses() ) + for ( Object item : project.getModel().getLicenses() ) { + License license = (License) item; String url = license.getUrl(); URL licenseUrl = null; diff --git a/src/main/java/org/apache/maven/report/projectinfo/MailingListsReport.java b/src/main/java/org/apache/maven/report/projectinfo/MailingListsReport.java index 7d932f8..32b8843 100644 --- a/src/main/java/org/apache/maven/report/projectinfo/MailingListsReport.java +++ b/src/main/java/org/apache/maven/report/projectinfo/MailingListsReport.java @@ -172,8 +172,9 @@ public class MailingListsReport tableHeader( new String[]{name, subscribe, unsubscribe, post, archive} ); } - for ( MailingList mailingList : model.getMailingLists() ) + for ( Object item : model.getMailingLists() ) { + MailingList mailingList = (MailingList) item; List textRow = new ArrayList(); // Validate here subsribe/unsubsribe lists and archives? -- debian/maven.publishedRules0000644000000000000000000000164211635436253013223 0ustar # Maven published rules - additional rules to publish, to help # the packaging work of Debian maintainers using mh_make # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # - a regular expression of the form s/match/replace/ # in this case, elements that match are transformed using # the regex rule. # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., replacing the version with 3.x # junit junit jar s/3\\..*/3.x/ debian/rules0000755000000000000000000000036011635436253010255 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 get-orig-source: uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename debian/orig-tar.sh0000755000000000000000000000102411635436253011256 0ustar #!/bin/sh -e VERSION=$2 TAR=../maven-project-info-reports-plugin_$VERSION.orig.tar.gz DIR=maven-project-info-reports-plugin-$VERSION TAG=$(echo "maven-project-info-reports-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 debian/changelog0000644000000000000000000000026111635436253011047 0ustar maven-project-info-reports-plugin (2.4-1) unstable; urgency=low * Initial release (Closes: #641757) -- Torsten Werner Thu, 15 Sep 2011 20:54:22 +0200 debian/README.source0000644000000000000000000000052211635436253011354 0ustar Information about maven-project-info-reports-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/watch0000644000000000000000000000026611635436253010233 0ustar version=3 opts="uversionmangle=s/-(alpha|beta)-/~$1/" \ http://svn.apache.org/repos/asf/maven/plugins/tags/ \ maven-project-info-reports-plugin-(\d.*)/ debian debian/orig-tar.sh debian/control0000644000000000000000000000655111635436253010610 0ustar Source: maven-project-info-reports-plugin Section: java Priority: optional Maintainer: Debian Java Maintainers Uploaders: Torsten Werner Build-Depends: debhelper (>= 7), cdbs, default-jdk, maven-debian-helper (>= 1.4) Build-Depends-Indep: libmaven-plugin-tools-java, libcommons-validator-java, libdoxia-java, libdoxia-sitetools-java, libjoda-time-java, libmaven-dependency-tree-java, libmaven-doxia-tools-java, libmaven-reporting-impl-java, libmaven-scm-java, libmaven-shared-jar-java, libmaven2-core-java, libplexus-container-default-java, libplexus-i18n-java, libplexus-interpolation-java, libplexus-utils-java, libwagon-java, libjetty-java, libmaven-plugin-testing-java, default-jdk-doc, libdoxia-java-doc, libjoda-time-java-doc, libmaven-scm-java-doc, libmaven-shared-jar-java-doc, libmaven2-core-java-doc, libplexus-container-default-java-doc, libplexus-utils-java-doc, libwagon-java-doc, libmaven-javadoc-plugin-java Standards-Version: 3.9.1 Vcs-Git: git://anonscm.debian.org/pkg-java/maven-project-info-reports-plugin.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/maven-project-info-reports-plugin.git Homepage: http://maven.apache.org/plugins/maven-project-info-reports-plugin/ Package: libmaven-project-info-reports-plugin-java Architecture: all Depends: ${misc:Depends}, ${maven:Depends} Recommends: ${maven:OptionalDepends} Suggests: libmaven-project-info-reports-plugin-java-doc Description: Maven Project Info Reports 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 Project Info Reports Plugin is a plugin that generates standard reports for the specified project. Package: libmaven-project-info-reports-plugin-java-doc Architecture: all Section: doc Depends: ${misc:Depends}, ${maven:DocDepends} Recommends: ${maven:DocOptionalDepends} Suggests: libmaven-project-info-reports-plugin-java Description: Documentation for Maven Project Info Reports 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 . This package contains the API documentation of libmaven-project-info-reports-plugin-java. debian/maven.cleanIgnoreRules0000644000000000000000000000150111635436253013464 0ustar # Maven clean ignore rules - ignore some Maven dependencies and plugins # during the clean phase of a Maven build # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., this dependency is then removed # from the POM before mvn clean is called # junit junit jar s/3\\..*/3.x/ debian/source/0000755000000000000000000000000011635436253010476 5ustar debian/source/format0000644000000000000000000000001411635436253011704 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000211635436253010374 0ustar 7 debian/maven.ignoreRules0000644000000000000000000000177011635436253012531 0ustar # Maven ignore rules - ignore some Maven dependencies and plugins # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., this dependency is then removed # from the POM # junit junit jar s/3\\..*/3.x/ httpunit httpunit * * * * junit-addons junit-addons * * * * org.apache.maven.plugins maven-jarsigner-plugin * * * * org.apache.maven.wagon wagon-http-lightweight * * * * org.apache.maven.wagon wagon-ssh * * * * org.codehaus.mojo keytool-maven-plugin * * * * debian/maven.properties0000644000000000000000000000014311635436253012420 0ustar # Include here properties to pass to Maven during the build. # For example: maven.test.skip=true