Applied patch MPANNOUNCEMENT-7 (removal of a unnecessary cast). Please note that there's no change in changes.xml as this is NOT a user-visible change.
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115533 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
<pomVersion>3</pomVersion>
|
||||
<id>maven-announcement-plugin</id>
|
||||
<name>Maven Announcement Plugin</name>
|
||||
<currentVersion>1.1</currentVersion>
|
||||
<currentVersion>1.2-SNAPSHOT</currentVersion>
|
||||
<description>The Announcement plugin generates release announcements. It uses the information found in both the POM and in the changes.xml file to generate the announcement text.</description>>
|
||||
<shortDescription>Produce release announcement</shortDescription>
|
||||
<url>http://maven.apache.org/reference/plugins/announcement/</url>
|
||||
@@ -45,6 +45,11 @@
|
||||
<name>1.1</name>
|
||||
<tag>MAVEN_ANNOUNCEMENT_1_1</tag>
|
||||
</version>
|
||||
<version>
|
||||
<id>1.2</id>
|
||||
<name>1.2</name>
|
||||
<tag>HEAD</tag>
|
||||
</version>
|
||||
</versions>
|
||||
<developers>
|
||||
<developer>
|
||||
|
||||
@@ -26,7 +26,7 @@ import java.util.StringTokenizer;
|
||||
*
|
||||
* @author <a href="mailto:vmassol@apache.org">Vincent Massol</a>
|
||||
*
|
||||
* @version $Id: Formatter.java,v 1.5 2004/05/01 09:46:21 vmassol Exp $
|
||||
* @version $Id: Formatter.java,v 1.6 2004/06/24 08:50:32 vmassol Exp $
|
||||
*/
|
||||
public final class Formatter
|
||||
{
|
||||
@@ -44,7 +44,7 @@ public final class Formatter
|
||||
StringBuffer buffer = new StringBuffer();
|
||||
while (st.hasMoreTokens())
|
||||
{
|
||||
String token = (String) st.nextToken();
|
||||
String token = st.nextToken();
|
||||
if (buffer.length() + token.length() <= column)
|
||||
{
|
||||
buffer.append(token);
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
<author email="vmassol@apache.org">Vincent Massol</author>
|
||||
</properties>
|
||||
<body>
|
||||
<release version="1.2-SNAPSHOT" date="in CVS">
|
||||
</release>
|
||||
<release version="1.1" date="2004-05-15">
|
||||
<action dev="brett" type="update">Detect whether the project is a plugin or not by the existence of plugin.jelly in the project directory, and change the wording accordingly.</action>
|
||||
<action dev="vmassol" type="add">Added new
|
||||
|
||||
Reference in New Issue
Block a user