Author: bayard
Date: Tue Jun 12 09:22:51 2007
New Revision: 546558
URL: http://svn.apache.org/viewvc?view=rev&rev=546558
Log:
Adding release notes, and making the src dist end with -src/
Modified:
jakarta/commons/proper/cli/branches/cli-1.0.x/RELEASE-NOTES.txt
jakarta/commons/proper/cli/branches/cli-1.0.x/maven.xml
jakarta/commons/proper/cli/branches/cli-1.0.x/project.properties
Modified: jakarta/commons/proper/cli/branches/cli-1.0.x/RELEASE-NOTES.txt
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/cli/branches/cli-1.0.x/RELEASE-NOTES.txt?view=diff&rev=546558&r1=546557&r2=546558
==============================================================================
--- jakarta/commons/proper/cli/branches/cli-1.0.x/RELEASE-NOTES.txt (original)
+++ jakarta/commons/proper/cli/branches/cli-1.0.x/RELEASE-NOTES.txt Tue Jun 12
09:22:51 2007
@@ -1,7 +1,7 @@
$Id$
Commons CLI Package
- Version 1.0
+ Version 1.1
Release Notes
@@ -10,17 +10,40 @@
This document contains the release notes for this version of the Commons
CLI package. Commons CLI provides a simple API for working with the command
line arguments and options.
-This is the first release of the CLI component, therefore all features are
new,
-there are no bug-fixes, nothing is deprecated and there are no changes.
+This is a bugfix release of CLI.
For more information, read the documentation on the project site at
http://jakarta.apache.org/commons/cli/
NEW FEATURES:
+ CLI-78 - Setting description of a Option.
+
BUG FIXES:
DEPRECATIONS:
CHANGES:
+ CLI-2 - Wrong usage summary.
+ CLI-5 - Dependecy on commons-lang-2.0 but commons-lang-1.0 is obtained.
+ CLI-8 - Line separator as first char for helpformatter (footer) throws
exception.
+ CLI-13 - CommandLine.getOptionValue() behaves contrary to docs.
+ CLI-21 - clone method in Option should use super.clone().
+ CLI-23 - Passing properties in Parser does not work for options with a
single argument.
+ CLI-26 - Only long options without short option seems to be noticed.
+ CLI-28 - Infinite Loop in Command-Line processing.
+ CLI-29 - Options should not be able to be added more than once.
+ CLI-35 - HelpFormatter doesn't sort options properly.
+ CLI-38 - HelpFormatter doesn't function correctly for options with only
LongOpt.
+ CLI-44 - Document enhancement.
+ CLI-45 - Documentation errors.
+ CLI-51 - Parameter value "-something" misinterpreted as a parameter.
+ CLI-56 - clone() method doesn't fully clone contents.
+ CLI-59 - No Javadoc for HelpFormatter!.
+ CLI-65 - Parser breaks up command line parms into single characters.
+ CLI-67 - Missing arguments in HelpFormatter.renderOptions(..).
+ CLI-69 - Error parsing option arguments.
+ CLI-71 - A weakness of parser.
+ CLI-129 - CLI_1_BRANCH build.xml doesn't work.
+ CLI-130 - Remove the Commons Lang dependency.
Modified: jakarta/commons/proper/cli/branches/cli-1.0.x/maven.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/cli/branches/cli-1.0.x/maven.xml?view=diff&rev=546558&r1=546557&r2=546558
==============================================================================
--- jakarta/commons/proper/cli/branches/cli-1.0.x/maven.xml (original)
+++ jakarta/commons/proper/cli/branches/cli-1.0.x/maven.xml Tue Jun 12 09:22:51
2007
@@ -14,21 +14,25 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<project default="jar:jar">
+<project default="jar:jar"
+ xmlns:j="jelly:core">
- <!-- Ensures that the conf directory and NOTICE.txt are included in the
+ <!-- Ensures that the release notes and NOTICE.txt are included in the
source distro.
-->
<postGoal name="dist:prepare-src-filesystem">
+ <j:set var="maven.dist.src.assembly.dir"
value="${pom.getPluginContext('maven-dist-plugin').getVariable('maven.dist.src.assembly.dir')}"
/>
<copy todir="${maven.dist.src.assembly.dir}">
<fileset file="${basedir}/NOTICE.txt"/>
+ <fileset file="${basedir}/RELEASE-NOTES.txt"/>
</copy>
</postGoal>
- <!-- Ensures that NOTICE.txt is added to the binary distro -->
+ <!-- Ensures that release notes NOTICE.txt is added to the binary distro -->
<preGoal name="dist:build-bin">
<copy todir="${maven.dist.bin.assembly.dir}">
<fileset file="${basedir}/NOTICE.txt"/>
+ <fileset file="${basedir}/RELEASE-NOTES.txt"/>
</copy>
</preGoal>
Modified: jakarta/commons/proper/cli/branches/cli-1.0.x/project.properties
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/cli/branches/cli-1.0.x/project.properties?view=diff&rev=546558&r1=546557&r2=546558
==============================================================================
--- jakarta/commons/proper/cli/branches/cli-1.0.x/project.properties (original)
+++ jakarta/commons/proper/cli/branches/cli-1.0.x/project.properties Tue Jun 12
09:22:51 2007
@@ -16,6 +16,9 @@
maven.jarResources.basedir=${basedir}/src/java
+# Make the source distro unzip to a different directory
+maven.dist.src.assembly.dir=${maven.dist.assembly.dir}/src/${maven.final.name}-src
+
# Reset the checkstyle properties to use the default sun settings
maven.checkstyle.properties=
maven.checkstyle.format=sun
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]