Upgrade ZK version to 5.0.7

A dependency from timelinez must be excluded, otherwise it would
include a previous version of zcommon not compatible with the new ZK
version.

FEA: ItEr75S04BugFixing
This commit is contained in:
Óscar González Fernández 2011-07-22 18:41:28 +02:00
parent 3e44be3899
commit 3cc756bbc3
2 changed files with 13 additions and 8 deletions

View file

@ -21,6 +21,7 @@
package org.navalplanner.web.planner.company;
import static java.util.Arrays.asList;
import static org.navalplanner.web.I18nHelper._;
import java.io.IOException;
@ -374,10 +375,8 @@ public abstract class CompanyPlanningModel implements ICompanyPlanningModel {
e.printStackTrace();
}
Clients.response("aa",
new AuInsertAfter(
chartComponent.getTabpanels().getFirstChild(),
out.toString()
));
new AuInsertAfter(chartComponent.getTabpanels()
.getFirstChild(), asList(out.toString())));
return null;
}
});

14
pom.xml
View file

@ -433,17 +433,17 @@
<dependency>
<groupId>org.zkoss.zk</groupId>
<artifactId>zul</artifactId>
<version>5.0.5</version>
<version>5.0.7</version>
</dependency>
<dependency>
<groupId>org.zkoss.zk</groupId>
<artifactId>zkplus</artifactId>
<version>5.0.5</version>
<version>5.0.7</version>
</dependency>
<dependency>
<groupId>org.zkoss.zk</groupId>
<artifactId>zk</artifactId>
<version>5.0.5</version>
<version>5.0.7</version>
<exclusions>
<exclusion>
<groupId>org.jruby</groupId>
@ -454,7 +454,7 @@
<dependency>
<groupId>org.zkoss.zk</groupId>
<artifactId>zkex</artifactId>
<version>5.0.5</version>
<version>5.0.7</version>
</dependency>
<!-- JGraphT -->
<dependency>
@ -577,6 +577,12 @@
<groupId>org.zkoss.zkforge</groupId>
<artifactId>timelinez</artifactId>
<version>2.3.1_50</version>
<exclusions>
<exclusion>
<groupId>org.zkoss.common</groupId>
<artifactId>zcommon</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>