INT-3789: Upgrade to SF 4.2 and other fixes

JIRA: https://jira.spring.io/browse/INT-3789

* Hazelcast -> `3.5.1`
* ActiveMq -> `5.11.1`
* Boon -> `0.33`
* Spring Security -> `4.0.2`
* Kryo -> `3.0.3`
* Fix missed polishing for the `Log4jLevelAdjuster` according required generics:
https://build.spring.io/browse/INT-MJATS41-348
* Fix `ImapIdelIntegrationTests` sporadic failure
* Fix `Kryo` Codec stuff according to the changes in the latest Kryo version
This commit is contained in:
Artem Bilan
2015-07-31 10:22:18 -04:00
parent 88be3dd325
commit 4cca684f36
6 changed files with 52 additions and 30 deletions

View File

@@ -56,7 +56,7 @@ public class Log4jLevelAdjuster implements MethodRule {
public Log4jLevelAdjuster(Level level, String... categories) {
this.level = level;
this.classes = new Class[0];
this.classes = new Class<?>[0];
this.categories = categories;
}