Return-Path: X-Original-To: apmail-maven-commits-archive@www.apache.org Delivered-To: apmail-maven-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 816BFEA34 for ; Wed, 9 Jan 2013 09:02:43 +0000 (UTC) Received: (qmail 15624 invoked by uid 500); 9 Jan 2013 09:02:43 -0000 Delivered-To: apmail-maven-commits-archive@maven.apache.org Received: (qmail 15582 invoked by uid 500); 9 Jan 2013 09:02:43 -0000 Mailing-List: contact commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@maven.apache.org Delivered-To: mailing list commits@maven.apache.org Received: (qmail 15563 invoked by uid 99); 9 Jan 2013 09:02:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Jan 2013 09:02:42 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Jan 2013 09:02:41 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id F119F238899C; Wed, 9 Jan 2013 09:02:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1430738 - in /maven/plugins/trunk/maven-doap-plugin/src: it/MDOAP-38/verify.groovy main/java/org/apache/maven/plugin/doap/DoapMojo.java Date: Wed, 09 Jan 2013 09:02:21 -0000 To: commits@maven.apache.org From: olamy@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130109090221.F119F238899C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: olamy Date: Wed Jan 9 09:02:21 2013 New Revision: 1430738 URL: http://svn.apache.org/viewvc?rev=1430738&view=rev Log: say the first what :-) Modified: maven/plugins/trunk/maven-doap-plugin/src/it/MDOAP-38/verify.groovy maven/plugins/trunk/maven-doap-plugin/src/main/java/org/apache/maven/plugin/doap/DoapMojo.java Modified: maven/plugins/trunk/maven-doap-plugin/src/it/MDOAP-38/verify.groovy URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-doap-plugin/src/it/MDOAP-38/verify.groovy?rev=1430738&r1=1430737&r2=1430738&view=diff ============================================================================== --- maven/plugins/trunk/maven-doap-plugin/src/it/MDOAP-38/verify.groovy (original) +++ maven/plugins/trunk/maven-doap-plugin/src/it/MDOAP-38/verify.groovy Wed Jan 9 09:02:21 2013 @@ -21,4 +21,4 @@ def logFile = new File( basedir, 'build. assert logFile.exists() content = logFile.text -assert content.contains( 'The first is too long maximum words number is 10.' ) +assert content.contains( 'The first sentence is too long maximum words number is 10.' ) Modified: maven/plugins/trunk/maven-doap-plugin/src/main/java/org/apache/maven/plugin/doap/DoapMojo.java URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-doap-plugin/src/main/java/org/apache/maven/plugin/doap/DoapMojo.java?rev=1430738&r1=1430737&r2=1430738&view=diff ============================================================================== --- maven/plugins/trunk/maven-doap-plugin/src/main/java/org/apache/maven/plugin/doap/DoapMojo.java (original) +++ maven/plugins/trunk/maven-doap-plugin/src/main/java/org/apache/maven/plugin/doap/DoapMojo.java Wed Jan 9 09:02:21 2013 @@ -2641,7 +2641,7 @@ public class DoapMojo break; case SHORT_DESC_TOO_LONG: errorMessages.add( - "The " + toConfiguration( tags, value ) + " first is too long maximum words number is 10." ); + "The " + toConfiguration( tags, value ) + " first sentence is too long maximum words number is 10." ); break; default: throw new IllegalArgumentException( "Unknown errorId=" + errorId );