[maven-debian-helper] branch topic-maven3 updated (7e3f7fd -> 7651530)

Jakub Adam xhaakon-guest at alioth.debian.org
Tue Sep 10 13:00:55 UTC 2013


This is an automated email from the git hooks/post-receive script.

xhaakon-guest pushed a change to branch topic-maven3
in repository maven-debian-helper.

  discards  7e3f7fd   Split java wrappers for Maven 2 and Maven 3
  discards  c49955e   Debhelper maven3 buildsystem
  discards  321a26b   Add support for maven3 buildsystem
      adds  852dfa9   Fixed the indentation in several classes of the debian-maven-plugin
      adds  0a4b256   Removed unnecessary casts
      adds  bf80141   Uppercase name for static final constants
      adds  c340e0c   Made DirectoryUtils package private and enhanced its javadoc
      adds  0200716   Moved license headers above package declarations (enables header folding in IDEs)
      adds  360d522   Improved code formatting
      adds  859934e   Use foreach loops in GenerateDebianFilesMojo
      adds  d977e7c   Added @Override annotations
      adds  a5513a3   Ignore the target directories
      adds  fd5b5cd   Moved license headers above package declarations
      adds  61c50b8   Moved the formatting of the package description into a separate method
      adds  814c033   Refer to "Debian systems" instead of "Debian GNU/Linux system" in the generated copyright file
      adds  2057a1c   Fixed the information message displayed when resolving dependencies (broken in commit 0551655)
      adds  c922c94   Moved the temporary directory used for the tests of maven-packager-utils under the target directory
      adds  c368037   Throw a meaningful message when the name of the package is null
      adds  3f0bf86   Removed the unused isFailed() methods from the output handlers
      adds  7f6060f   Minor code changes
      adds  575b5b9   Added maven-scm-publish-plugin to the list of the ignored plugins
      adds  4f3899d   Added maven-svn-wagon to the list of the ignored extensions
      adds  6044ff0   Added l10n-maven-plugin to the list of the documentation plugins
      adds  52ad282   Generate canonical URLs for the Vcs-* fields
      adds  ee51b1d   Added rat-maven-plugin to the list of the ignored plugins
      adds  0e37d1e   Don't install the documentation jar by default (Closes: #711852)
      adds  30eaef3   Added the missing changelog entry for the version 1.6.3
      adds  8d2fe0c   Changelog update for 1.6.4
      adds  bc8309c   Touch debian/stamp-poms-patched after mh_patchpoms is run
      adds  db88057   Send all pom cleaning options to POMCleaner
      adds  52178df   Send all pom cleaning options to POMCleaner
      adds  1e5a97e   Merge branch 'master' of git+ssh://git.debian.org/git/pkg-java/maven-debian-helper
      adds  605462a   Rejig changelog as 1.6.4 is almost released
      adds  64fce42   releasing version 1.6.4
      adds  e574b12   Add Wolodja Wentland to uploaders
      adds  644ab39   Prevent artifact installation during dh build
      adds  7bb93de   Adjust mh_resolve_dependencies arguments in dh to match CDBS
      adds  2a8aa54   Adjust debian-maven-plugin options in dh to match CDBS
      adds  3ff43b7   Revert 0e37d1e; switch javadoc:javadoc back to javadoc:jar
      adds  88f2e79   Switch maven doc target back to javadoc:jar in CDBS
      adds  0c8d84c   upload to unstable.
       new  279021c   Add support for maven3 buildsystem
       new  dce3446   Debhelper maven3 buildsystem
       new  7651530   Split java wrappers for Maven 2 and Maven 3

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (7e3f7fd)
            \
             N -- N -- N   refs/heads/topic-maven3 (7651530)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omits" are not gone; other references still
refer to them.  Any revisions marked "discards" are gone forever.

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |    1 +
 .../org/debian/maven/plugin/DirectoryUtils.java    |   21 +++--
 .../org/debian/maven/plugin/InstallDocMojo.java    |   64 +++++++-------
 .../java/org/debian/maven/plugin/InstallMojo.java  |    8 +-
 .../debian/maven/plugin/ResolveCompileMojo.java    |    6 +-
 .../org/debian/maven/plugin/ResolveNoneMojo.java   |   15 ++--
 .../debian/maven/plugin/ResolveRuntimeMojo.java    |    6 +-
 .../org/debian/maven/plugin/ResolveTestMojo.java   |    6 +-
 .../org/debian/maven/plugin/SysInstallDocMojo.java |    9 +-
 .../org/debian/maven/plugin/SysInstallMojo.java    |   68 ++++++++++-----
 .../org/debian/maven/plugin/SysUninstallMojo.java  |   36 ++++----
 .../debian/maven/plugin/DirectoryUtilsTest.java    |    4 +-
 .../org/debian/maven/plugin/InstallMojoTest.java   |   44 +++++-----
 debian/changelog                                   |   48 +++++++++++
 debian/control                                     |    2 +-
 .../src/main/java/org/debian/maven/Wrapper.java    |    4 +-
 .../debian/maven/packager/DebianDependency.java    |   12 +--
 .../debian/maven/packager/DependenciesMojo.java    |   34 ++++++--
 .../debian/maven/packager/DependenciesSolver.java  |   12 ++-
 .../maven/packager/GenerateDebianFilesMojo.java    |   91 +++++++++++++-------
 .../packager/util/GetChangelogVersionResult.java   |   10 +--
 .../util/GetPackageContainingPatternResult.java    |    3 +-
 .../maven/packager/util/GetPackageResult.java      |    3 +-
 .../packager/util/GetPackageVersionResult.java     |    9 +-
 .../org/debian/maven/packager/util/IOUtil.java     |   11 +--
 .../packager/util/IgnoreDependencyQuestions.java   |    8 +-
 .../maven/packager/util/LicenseCheckResult.java    |    3 +-
 .../maven/packager/util/LicensesScanner.java       |    3 +-
 .../maven/packager/util/NoOutputHandler.java       |   10 +--
 .../debian/maven/packager/util/OutputHandler.java  |    6 +-
 .../debian/maven/packager/util/PackageScanner.java |    3 +-
 .../packager/util/SharedJarOutputHandler.java      |    3 +-
 .../src/main/resources/control.ant.vm              |    4 +-
 maven-packager-utils/src/main/resources/control.vm |    4 +-
 .../src/main/resources/copyright.vm                |    4 +-
 maven-packager-utils/src/main/resources/rules.vm   |    2 +-
 .../maven/packager/DependenciesSolverTest.java     |   14 +--
 .../packager/GenerateDebianFilesMojoTest.java      |   48 +++++++++++
 .../GetPackageContainingPatternResultTest.java     |    3 +-
 .../maven/packager/util/GetPackageResultTest.java  |    3 +-
 .../packager/util/GetPackageVersionResultTest.java |    3 +-
 .../maven/packager/util/LicensesScannerTest.java   |    4 +-
 share/perl/maven.pm                                |    7 +-
 43 files changed, 403 insertions(+), 256 deletions(-)
 create mode 100644 maven-packager-utils/src/test/java/org/debian/maven/packager/GenerateDebianFilesMojoTest.java

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/maven-debian-helper.git



More information about the pkg-java-commits mailing list