PR: MPSCM-97

scm:update fails with NoClassDefFound, add missing jakarta-regexp dependency

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@553431 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2007-07-05 09:26:48 +00:00
parent 6e3dc392bc
commit dd09ebea76
2 changed files with 9 additions and 1 deletions

View File

@ -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>
@ -186,6 +186,11 @@
<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>
<artifactId>maven-scm-manager-plexus</artifactId>

View File

@ -24,6 +24,9 @@
<author email="brett@apache.org">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>