Reviewers: drfibonacci, rdayal, Description: Allow x.y.z-abc versions in Maven artifacts (instead of just x.y.z)
Thanks to Thomas Broyer (from issue 1591805). This allows for things like 2.5.0-companyname-r10757 or 2.5.0-companyname-r10757-patched, as recommended by http://www.sonatype.com/people/2009/01/best-practices-for-releasing-with-3rd-party-snapshot-dependencies/ Please review this at http://gwt-code-reviews.appspot.com/1595803/ Affected files: M maven/push-gwt.sh Index: maven/push-gwt.sh =================================================================== --- maven/push-gwt.sh (revision 10757) +++ maven/push-gwt.sh (working copy) @@ -29,8 +29,10 @@ case $gwtVersion in *.*.* ) ;; + *.*.*-* ) + ;; * ) - echo "Please enter a version of the form x.y.z" + echo "Please enter a version of the form x.y.z or x.y.z-abc" exit 1;; esac -- http://groups.google.com/group/Google-Web-Toolkit-Contributors
