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>
No comments:
Post a Comment