2012-11-27

Instructions for migration to Ujorm 1.30

If you are considering migrating to Ujorm 1.30, I recommend to use three simple steps:
  1. upgrade Maven dependendecies to: groupId=org.ujorm + version=1.30
  2. replace all texts "UjoProperty" for the targets "Key" in your project and
  3. fix deprecated methods

Optionally, you can use the KeyFactory class to create new keys instead of original static factory methods.

2012-11-04

Module Ujo-Wicket dependency

In the last release 1.30 I have found a small bug in dependency on the artifact ujo-wicket. Fortunately there is a simple solution using a small hack. See the next dependecies solution to fix it:
<dependency>
    <groupId>org.ujorm</groupId>
    <artifactId>ujo-wicket</artifactId>
    <version>1.30</version>
    <exclusions>
        <exclusion>
            <groupId>org.ujorm</groupId>
            <artifactId>ujo-core</artifactId>
        </exclusion>
    </exclusions>
</dependency>
<dependency>
    <groupId>org.ujorm</groupId>
    <artifactId>ujo-core</artifactId>
    <version>1.30</version>
</dependency>