Return-Path: X-Original-To: apmail-commons-dev-archive@www.apache.org Delivered-To: apmail-commons-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 92035102C6 for ; Sun, 7 Jul 2013 07:37:43 +0000 (UTC) Received: (qmail 26288 invoked by uid 500); 7 Jul 2013 07:37:36 -0000 Delivered-To: apmail-commons-dev-archive@commons.apache.org Received: (qmail 26195 invoked by uid 500); 7 Jul 2013 07:37:34 -0000 Mailing-List: contact dev-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Commons Developers List" Delivered-To: mailing list dev@commons.apache.org Received: (qmail 26185 invoked by uid 99); 7 Jul 2013 07:37:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Jul 2013 07:37:33 +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.54] (HELO vmbuild.apache.org) (140.211.11.54) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Jul 2013 07:37:31 +0000 Received: from vmbuild (localhost [127.0.0.1]) by vmbuild.apache.org (8.14.3/8.14.3/Debian-9.1ubuntu1) with ESMTP id r677bBum020150 for ; Sun, 7 Jul 2013 07:37:11 GMT Date: Sun, 7 Jul 2013 07:37:11 +0000 (UTC) From: "Continuum@vmbuild" To: dev@commons.apache.org Message-ID: <688137963.2.1373182631660.JavaMail.continuum@vmbuild> Subject: [continuum] BUILD FAILURE: Apache Commons - Commons CSV - X-Virus-Checked: Checked by ClamAV on apache.org Group (shared) Maven 2 Build Definition (Java 1.5) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Continuum-Build-Host: vmbuild X-Continuum-Project-Id: 68 X-Continuum-Project-Name: Commons CSV Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=27149&projectId=68 Build statistics: State: Failed Previous State: Ok Started at: Sun 7 Jul 2013 07:36:52 +0000 Finished at: Sun 7 Jul 2013 07:37:09 +0000 Total time: 17s Build Trigger: Schedule Build Number: 212 Exit code: 1 Building machine hostname: vmbuild Operating system : Linux(unknown) Java Home version : java version "1.6.0_30" Java(TM) SE Runtime Environment (build 1.6.0_30-b12) Java HotSpot(TM) 64-Bit Server VM (build 20.5-b03, mixed mode) Builder version : Apache Maven 2.2.1 (r801777; 2009-08-06 19:16:01+0000) Java version: 1.6.0_30 Java home: /usr/lib/jvm/jdk1.6.0_30/jre Default locale: en_US, platform encoding: ANSI_X3.4-1968 OS name: "linux" version: "2.6.32-41-server" arch: "amd64" Family: "unix" **************************************************************************** SCM Changes: **************************************************************************** Changed: ggregory @ Thu 20 Jun 2013 21:39:53 +0000 Comment: - Add final modifier to method parameters. - Add final modifier to local variables. Files changed: /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java ( 1495203 ) /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java ( 1495203 ) /commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVRecordTest.java ( 1495203 ) /commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/TokenMatchers.java ( 1495203 ) Changed: ggregory @ Fri 21 Jun 2013 01:23:30 +0000 Comment: Update H2 used for tests to 1.3.172 from 1.3.168. Files changed: /commons/proper/csv/trunk/pom.xml ( 1495264 ) Changed: ggregory @ Fri 21 Jun 2013 01:46:26 +0000 Comment: Better param name. Files changed: /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVLexer.java ( 1495268 ) Changed: ggregory @ Fri 21 Jun 2013 01:49:03 +0000 Comment: Fix possible NPE reported by FindBugs. Files changed: /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVLexer.java ( 1495269 ) Changed: ggregory @ Mon 24 Jun 2013 03:06:05 +0000 Comment: [CSV-93] Allow the handling of NULL values. Use a single property 'nullString' for both input and output processing. No substitutions occur if null. For reading, nullString is used to convert field values to null. For writing, nullString is used to output the given string instead of the empty string. Files changed: /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java ( 1495911 ) /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java ( 1495911 ) /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java ( 1495911 ) /commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVPrinterTest.java ( 1495911 ) Changed: ggregory @ Mon 24 Jun 2013 03:17:29 +0000 Comment: Replace magic String with constant from Constants. Files changed: /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java ( 1495912 ) Changed: ggregory @ Mon 24 Jun 2013 03:27:03 +0000 Comment: Add contants for [CSV-51] Support Unicode line separators. Files changed: /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Constants.java ( 1495914 ) Changed: sebb @ Mon 24 Jun 2013 09:15:27 +0000 Comment: Javadoc fix Files changed: /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java ( 1495965 ) Changed: ggregory @ Mon 24 Jun 2013 13:13:57 +0000 Comment: Javadoc. Files changed: /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Token.java ( 1496024 ) Changed: sebb @ Mon 24 Jun 2013 14:22:56 +0000 Comment: Clarify (hopefully) the Javadoc Files changed: /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java ( 1496064 ) Changed: ggregory @ Mon 24 Jun 2013 22:18:23 +0000 Comment: Fix formatting. Files changed: /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java ( 1496236 ) Changed: britter @ Sat 29 Jun 2013 19:04:01 +0000 Comment: Make sure an unmapped header returns null Files changed: /commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVRecordTest.java ( 1498003 ) Changed: britter @ Sat 29 Jun 2013 19:04:41 +0000 Comment: Update to latest parent (although CP 32 is on the way :) Files changed: /commons/proper/csv/trunk/pom.xml ( 1498005 ) Changed: britter @ Thu 4 Jul 2013 20:23:07 +0000 Comment: Update to latest commons parent pom Files changed: /commons/proper/csv/trunk/pom.xml ( 1499858 ) **************************************************************************** Dependencies Changes: **************************************************************************** No dependencies changed **************************************************************************** Build Definition: **************************************************************************** POM filename: pom.xml Goals: clean deploy Arguments: --batch-mode -Pjava-1.5 -Dgpg.skip -Prelease Build Fresh: false Always Build: false Default Build Definition: true Schedule: COMMONS_SCHEDULE Profile Name: Maven 2.2.1 Description: Group (shared) Maven 2 Build Definition (Java 1.5) **************************************************************************** Test Summary: **************************************************************************** Tests: 151 Failures: 0 Errors: 1 Success Rate: 99 Total time: 1.4909999 --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org For additional commands, e-mail: dev-help@commons.apache.org