Online report : 
https://continuum-ci.apache.org/continuum/buildResult.action?buildId=33878&projectId=72

Build statistics:
  State: Failed
  Previous State: Ok
  Started at: Fri 11 Jul 2014 20:22:09 +0000
  Finished at: Fri 11 Jul 2014 20:22:49 +0000
  Total time: 40s
  Build Trigger: Schedule
  Build Number: 329
  Exit code: 1
  Building machine hostname: continuum-vm
  Operating system : Linux(unknown)
  Java Home version : 
          java version "1.6.0_31"
          OpenJDK Runtime Environment (IcedTea6 1.13.3) 
(6b31-1.13.3-1ubuntu1~0.12.04.2)
          OpenJDK 64-Bit Server VM (build 23.25-b01, mixed mode)
        
  Builder version :
          Apache Maven 3.0.5 (r01de14724cdef164cd33c7c8c2fe155faf9602da; 
2013-02-19 13:51:28+0000)
          Maven home: /opt/apache-maven-3.0.5
          Java version: 1.6.0_31, vendor: Sun Microsystems Inc.
          Java home: /usr/lib/jvm/java-6-openjdk-amd64/jre
          Default locale: en_US, platform encoding: ANSI_X3.4-1968
          OS name: "linux", version: "3.2.0-64-generic", arch: "amd64", family: 
"unix"
    
****************************************************************************
SCM Changes:
****************************************************************************
Changed: oheger @ Fri 11 Jul 2014 20:09:47 +0000
Comment: ReloadingEvent now extends Event.

The event mechanism used by ReloadingController is going to be ported to the
new mechanism based on event types.
Files changed:
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/reloading/ReloadingEvent.java
 ( 1609781 )
  
/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/reloading/TestReloadingController.java
 ( 1609781 )

Changed: oheger @ Fri 11 Jul 2014 20:10:19 +0000
Comment: Renamed type parameter.

The parameter T is already used by the class. Therefore, E was chosen for the
event type.
Files changed:
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/builder/BasicConfigurationBuilder.java
 ( 1609782 )
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/builder/ConfigurationBuilder.java
 ( 1609782 )

Changed: oheger @ Fri 11 Jul 2014 20:11:07 +0000
Comment: ReloadingController now supports the new event style.

The old methods for adding and removing event listeners have been deprecated.
They will be removed when all references have been replaced.
Files changed:
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/reloading/ReloadingController.java
 ( 1609783 )
  
/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/reloading/TestReloadingController.java
 ( 1609783 )

Changed: oheger @ Fri 11 Jul 2014 20:11:55 +0000
Comment: Adapted ReloadingBuilderSupportListener to changes on 
ReloadingController.

The new event mechanism is used to register the listener.
Files changed:
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/builder/ReloadingBuilderSupportListener.java
 ( 1609784 )
  
/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/builder/TestReloadingBuilderSupportListener.java
 ( 1609784 )

Changed: oheger @ Fri 11 Jul 2014 20:12:27 +0000
Comment: Removed deprecated event handling methods from ReloadingController.

All callers of these methods have been adapted; so they are now obsolete and
can be removed.
Files changed:
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/reloading/ReloadingController.java
 ( 1609785 )

Changed: oheger @ Fri 11 Jul 2014 20:13:02 +0000
Comment: Removed obsolete ReloadingListener interface.

The interface is now replaced by the generic EventListener interface.
Files changed:
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/reloading/ReloadingController.java
 ( 1609786 )
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/reloading/ReloadingListener.java
 ( 1609786 )

Changed: oheger @ Fri 11 Jul 2014 20:13:34 +0000
Comment: Reworked ConfigurationEvent to conform to the new event mechanism.

The class now extends Event and can handle an EventType. The old numeric type
is still stored; it will be removed when the refactoring is complete.
Files changed:
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/ConfigurationEvent.java
 ( 1609787 )

Changed: oheger @ Fri 11 Jul 2014 20:14:23 +0000
Comment: Added new event type constants for basic update events.

A new test class was added to check whether the types are correctly set up.
Files changed:
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/AbstractConfiguration.java
 ( 1609788 )
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/ConfigurationEvent.java
 ( 1609788 )
  
/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/event/TestConfigurationEventTypes.java
 ( 1609788 )

Changed: oheger @ Fri 11 Jul 2014 20:15:08 +0000
Comment: Added methods to EventListenerList for querying registered event 
listeners.

This is mainly useful in unit tests, but also supports advanced iteration over
event listeners.
Files changed:
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/EventListenerList.java
 ( 1609789 )
  
/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/event/TestEventListenerList.java
 ( 1609789 )

Changed: oheger @ Fri 11 Jul 2014 20:16:01 +0000
Comment: Modified EventSource interface.

New methods for adding and removing event listeners were added based on the
event type. The existing methods were deperecated. This commit breaks the
build because not all adaptations have been made.
Files changed:
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ConfigurationUtils.java
 ( 1609790 )
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/BaseEventSource.java
 ( 1609790 )
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/EventSource.java
 ( 1609790 )
  
/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/builder/TestBuilderConfigurationWrapperFactory.java
 ( 1609790 )

Changed: oheger @ Fri 11 Jul 2014 20:16:54 +0000
Comment: Implemented methods for new event handlers in BaseEventSource.

Adapted event handling in AbstractConfiguration and made the base test for
event handling run again.
Files changed:
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/AbstractConfiguration.java
 ( 1609791 )
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/BaseEventSource.java
 ( 1609791 )
  
/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/event/AbstractTestConfigurationEvents.java
 ( 1609791 )
  
/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/event/EventListenerTestImpl.java
 ( 1609791 )

Changed: oheger @ Fri 11 Jul 2014 20:17:25 +0000
Comment: Removed unneeded member field.
Files changed:
  
/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/event/TestPropertiesConfigurationEvents.java
 ( 1609792 )

Changed: oheger @ Fri 11 Jul 2014 20:17:59 +0000
Comment: Added an alternative method for querying event listeners.

The new method is more generic and allows filtering by an event type. The old
method for querying configuration listeners has been deprecated.
Files changed:
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/BaseEventSource.java
 ( 1609793 )

Changed: oheger @ Fri 11 Jul 2014 20:18:42 +0000
Comment: Adapted PropertiesConfigurationLayout to new event mechanism.
Files changed:
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/PropertiesConfiguration.java
 ( 1609794 )
  
/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/PropertiesConfigurationLayout.java
 ( 1609794 )
  
/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/TestPropertiesConfigurationLayout.java
 ( 1609794 )

Changed: oheger @ Fri 11 Jul 2014 20:19:12 +0000
Comment: Fixed a failing test case for PropertiesConfiguration related to 
events.

Also fixed some warnings from IntelliJ.
Files changed:
  
/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/TestPropertiesConfiguration.java
 ( 1609795 )

Changed: oheger @ Fri 11 Jul 2014 20:19:44 +0000
Comment: Adapted abstract base test class for PList configuration events.
Files changed:
  
/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/plist/AbstractTestPListEvents.java
 ( 1609796 )

****************************************************************************
Dependencies Changes:
****************************************************************************
No dependencies changed


****************************************************************************
Build Definition:
****************************************************************************
POM filename: pom.xml
Goals: clean deploy   
Arguments: --batch-mode -Pjava-1.6 -Dgpg.skip -Prelease
Build Fresh: false
Always Build: false
Default Build Definition: true
Schedule: COMMONS_SCHEDULE
Profile Name: Maven 3.0.5
Description: Group (shared) Maven 3 Build Definition (Java 1.6)

****************************************************************************
Test Summary:
****************************************************************************
Tests: 0
Failures: 0
Errors: 0
Total time: 0.0




---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to