diff options
author | Piotr Borelowski <p.borelowski@partner.samsung.com> | 2019-09-06 17:06:39 +0200 |
---|---|---|
committer | Piotr Borelowski <p.borelowski@partner.samsung.com> | 2019-09-09 09:07:05 +0000 |
commit | 1d5ecc692a165fc84181b8f145242a410f2abf38 (patch) | |
tree | 80bad3fd9d596819a5f74eb54cdf4587cc585ef5 /workflow-designer-be | |
parent | 61ccc9e58b55d96330892231047a239dadf409a0 (diff) |
Fix throwing an UnsatisfiedDependencyException upon starting
The UnsatisfiedDependencyException is finally caused by
ClassNotFoundException: c.g.c.u.c.FutureFallback.
That was fixed by upgrading the spring boot version to 2.1.0.RELEASE.
By doing that the cassandra version was upgraded to version 3.6.0,
which doesn't require the FutureFallback class.
Issue-ID: SDC-2557
Signed-off-by: Piotr Borelowski <p.borelowski@partner.samsung.com>
Change-Id: I5b319096978e768b7520fb937fd2b3dad26f15c5
Diffstat (limited to 'workflow-designer-be')
-rw-r--r-- | workflow-designer-be/pom.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/workflow-designer-be/pom.xml b/workflow-designer-be/pom.xml index 8d85bec3..4bfcf0e0 100644 --- a/workflow-designer-be/pom.xml +++ b/workflow-designer-be/pom.xml @@ -14,7 +14,7 @@ </parent> <properties> - <spring.boot.version>2.0.3.RELEASE</spring.boot.version> + <spring.boot.version>2.1.0.RELEASE</spring.boot.version> <mapstruct.version>1.2.0.Final</mapstruct.version> <lombok.version>1.18.0</lombok.version> <springfox.version>2.8.0</springfox.version> |