Author: pcc-guest Date: 2010-08-07 01:07:20 +0000 (Sat, 07 Aug 2010) New Revision: 12888
Modified: trunk/maven-repo-helper/debian/README.Debian trunk/maven-repo-helper/debian/changelog trunk/maven-repo-helper/src/main/bin/mh_cleanpom Log: Document the correct order of attributes in rules files Modified: trunk/maven-repo-helper/debian/README.Debian =================================================================== --- trunk/maven-repo-helper/debian/README.Debian 2010-08-06 19:06:52 UTC (rev 12887) +++ trunk/maven-repo-helper/debian/README.Debian 2010-08-07 01:07:20 UTC (rev 12888) @@ -179,7 +179,7 @@ The syntax of this file is similar to debian/maven.rules, but more relaxed as we are interested here only in elements that match: -<rule for artifact groupId> [rule for artifact id] [rule for artifact type] [rule for artifact version] [rule for artifact classifier] +<rule for artifact groupId> [rule for artifact id] [rule for artifact type] [rule for artifact version] [rule for artifact classifier] [rule for artifact scope] Any element, except the first is optional and replaced automatically by * to match anything, but if it omitted then all following elements must also be omitted. Modified: trunk/maven-repo-helper/debian/changelog =================================================================== --- trunk/maven-repo-helper/debian/changelog 2010-08-06 19:06:52 UTC (rev 12887) +++ trunk/maven-repo-helper/debian/changelog 2010-08-07 01:07:20 UTC (rev 12888) @@ -1,3 +1,10 @@ +maven-repo-helper (1.3) UNRELEASED; urgency=low + + [ Peter Collingbourne ] + * Document the correct order of attributes in rules files + + -- Ludovic Claude <[email protected]> Sat, 07 Aug 2010 01:48:57 +0100 + maven-repo-helper (1.2) unstable; urgency=low * Fix 'illegal NCName' error when gcj is used to run the mh_* scripts Modified: trunk/maven-repo-helper/src/main/bin/mh_cleanpom =================================================================== --- trunk/maven-repo-helper/src/main/bin/mh_cleanpom 2010-08-06 19:06:52 UTC (rev 12887) +++ trunk/maven-repo-helper/src/main/bin/mh_cleanpom 2010-08-07 01:07:20 UTC (rev 12888) @@ -67,9 +67,10 @@ echo -e "" echo -e "\tYou can modify those defaults with the help of the" echo -e "\trules file. This file should contain the lines with the format:" - echo -e "\t<groupId> [artifactId] [type] [version] [scope]" - echo -e "\twhere groupId, artifactId, type, version and scope can be the explicit" - echo -e "\tattribute to match, or can contain a wildcard (*) for generic matches." + echo -e "\t<groupId> [artifactId] [type] [version] [classifier] [scope]" + echo -e "\twhere groupId, artifactId, type, version, classifier and scope can be" + echo -e "\tthe explicit attribute to match, or can contain a wildcard (*) for" + echo -e "\tgeneric matches." echo -e "" echo -e "\tEach one of those elements can also be a replace rule, of the form" echo -e "\ts/<regex>/<replace>/ where regex is a regular expression, and replace" _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits

