Hi,

today I tried to update timefinder to use spring rc 1.1.0 and I only had some minor refactoring issues, which where quickly solved.
BTW: All people trying this should be aware of
[RCP-575] - Merge modules core, binding, forms, support and jdk5 into core

Another issue was
http://jira.springframework.org/browse/SPR-4524
where I got an exception on context loading.

I solved this at the moment with upgrading from spring 2.5.5 to 2.5.6:
Code:
   <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring</artifactId>
            <version>2.5.6</version>
    </dependency>

    <dependency>
            <groupId>org.springframework.richclient</groupId>
            <artifactId>spring-richclient-core</artifactId>
            <version>${springrc.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework</groupId>
                    <artifactId>spring</artifactId>                    
                </exclusion>
            </exclusions>
        </dependency>
Would it be possible to update spring rc to the latest spring?