Author: ltheussl Date: Thu Jul 5 02:26:48 2007 New Revision: 553431 URL: http://svn.apache.org/viewvc?view=rev&rev=553431 Log: PR: MPSCM-97 scm:update fails with NoClassDefFound, add missing jakarta-regexp dependency
Modified: maven/maven-1/plugins/trunk/scm/project.xml maven/maven-1/plugins/trunk/scm/xdocs/changes.xml Modified: maven/maven-1/plugins/trunk/scm/project.xml URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/scm/project.xml?view=diff&rev=553431&r1=553430&r2=553431 ============================================================================== --- maven/maven-1/plugins/trunk/scm/project.xml (original) +++ maven/maven-1/plugins/trunk/scm/project.xml Thu Jul 5 02:26:48 2007 @@ -23,7 +23,7 @@ <pomVersion>3</pomVersion> <id>maven-scm-plugin</id> <name>Maven Source Control Management Plugin</name> - <currentVersion>1.6.1</currentVersion> + <currentVersion>1.6.2-SNAPSHOT</currentVersion> <description>A plugin for SCM tasks.</description> <shortDescription>SCM Plugin for Maven.</shortDescription> <versions> @@ -185,6 +185,11 @@ <properties> <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment> </properties> + </dependency> + <dependency> + <groupId>regexp</groupId> + <artifactId>regexp</artifactId> + <version>1.3</version> </dependency> <dependency> <groupId>org.apache.maven.scm</groupId> Modified: maven/maven-1/plugins/trunk/scm/xdocs/changes.xml URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/scm/xdocs/changes.xml?view=diff&rev=553431&r1=553430&r2=553431 ============================================================================== --- maven/maven-1/plugins/trunk/scm/xdocs/changes.xml (original) +++ maven/maven-1/plugins/trunk/scm/xdocs/changes.xml Thu Jul 5 02:26:48 2007 @@ -24,6 +24,9 @@ <author email="[EMAIL PROTECTED]">Brett Porter</author> </properties> <body> + <release version="1.6.2-SNAPSHOT" date="in SVN"> + <action dev="ltheussl" type="fix" issue="MPSCM-97">scm:update fails with NoClassDefFound, add missing jakarta-regexp dependency.</action> + </release> <release version="1.6.1" date="2007-03-28"> <action dev="ltheussl" type="fix" issue="MPSCM-63">The prepare-release goal should fail if project.xml can't be edited (e.g. read only).</action> <action dev="ltheussl" type="fix" issue="MPSCM-89">SCM Parse Connection output is wrong / misleading.</action>