Upgrade dependencies, including Gradle

* Alongside with existing `springAmqpVersion` & `springVersion`
also expose `springDataVersion` & `springSecurityVersion`
project properties.
These can be used in external CI plans for compatibility builds
* Fix `IntegrationGraphServerTests` for the current state of graph -
The node name is now based on the endpoint id, not a `MH` bean name
* Fix MongoDB tests for compatibility with the latest driver
This commit is contained in:
Artem Bilan
2019-12-27 10:00:36 -05:00
parent fab7741368
commit 9c68ae4a7d
14 changed files with 47 additions and 78 deletions

View File

@@ -217,7 +217,7 @@ public class IntegrationGraphServerTests {
assertThat(jsonArray).hasSize(1);
jsonArray = JsonPathUtils.evaluate(baos.toByteArray(),
"$..nodes[?(@.name == 'services.foo.serviceActivator.handler')]");
"$..nodes[?(@.name == 'services.foo.serviceActivator')]");
assertThat(jsonArray).hasSize(1);