INT-3774: Update to Groovy 2.4.4

JIRA: https://jira.spring.io/browse/INT-3774
This commit is contained in:
Gary Russell
2015-07-17 19:26:47 -04:00
parent 80227ef1f4
commit c344357312
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ subprojects { subproject ->
derbyVersion = '10.10.1.1'
eclipseLinkVersion = '2.4.2'
ftpServerVersion = '1.0.6'
groovyVersion = '2.3.1'
groovyVersion = '2.4.4'
guavaVersion = '16.0.1'
hamcrestVersion = '1.3'
hibernateVersion = '4.2.11.Final'

View File

@@ -182,7 +182,7 @@ public class GroovyServiceActivatorTests {
catch (Exception e) {
Throwable cause = e.getCause();
assertEquals(MissingPropertyException.class, cause.getClass());
assertThat(cause.getMessage(), Matchers.containsString("No such property: ReplyRequiredException for class: groovy.lang"));
assertThat(cause.getMessage(), Matchers.containsString("No such property: ReplyRequiredException for class: groovy_lang"));
throw e;
}