From f4979411f21cc064a80b6c243eba34285f0d27f5 Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Sun, 9 Jul 2017 08:34:16 +0100 Subject: [PATCH] Fix build for spring-context - Now using spring-context dependency manually as framework changed it to optional. - Fixes #396 --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index 2f92ef54..6a8777ca 100644 --- a/build.gradle +++ b/build.gradle @@ -212,6 +212,7 @@ project('spring-statemachine-test') { description = "Spring State Machine Test" dependencies { + compile "org.springframework:spring-context" compile project(":spring-statemachine-core") compile "org.springframework:spring-test" @@ -241,6 +242,7 @@ project('spring-statemachine-zookeeper') { description = "Spring State Machine Zookeeper" dependencies { + compile "org.springframework:spring-context" compile project(":spring-statemachine-core") compile project(":spring-statemachine-kryo") compile "org.apache.curator:curator-recipes" @@ -388,6 +390,7 @@ configure(recipeProjects()) { project('spring-statemachine-recipes-common') { dependencies { + compile "org.springframework:spring-context" compile project(":spring-statemachine-core") testCompile "org.springframework:spring-test" testCompile "org.hamcrest:hamcrest-core"