diff --git a/build.gradle b/build.gradle
index 4f2361e8c4..d11632370c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
def jettyVersion = "9.4.25.v20191220"
-
+def springVersion = "5.2.3.RELEASE";
allprojects {
group = 'com.jpmorgan.quorum'
//version = '0.11-SNAPSHOT'
@@ -77,15 +77,18 @@ allprojects {
compile "org.eclipse.jetty:jetty-unixsocket:"+ jettyVersion
compile "org.eclipse.jetty:jetty-server:"+ jettyVersion
compile "org.eclipse.jetty.websocket:javax-websocket-server-impl:"+ jettyVersion
- compile "org.springframework:spring-core:5.1.2.RELEASE"
- compile "org.springframework:spring-beans:5.1.2.RELEASE"
- compile "org.springframework:spring-context:5.1.2.RELEASE"
- compile "org.springframework:spring-orm:5.1.2.RELEASE"
+
compile "io.swagger:swagger-annotations:1.5.4"
compile "javax.transaction:javax.transaction-api:1.3"
compile "org.bouncycastle:bcpkix-jdk15on:1.61"
- compile "org.springframework:spring-orm:5.1.2.RELEASE"
- compile "org.springframework:spring-test:5.1.2.RELEASE"
+
+ compile "org.springframework:spring-orm:"+ springVersion
+ compile "org.springframework:spring-test:"+ springVersion
+ compile "org.springframework:spring-core:"+ springVersion
+ compile "org.springframework:spring-beans:"+ springVersion
+ compile "org.springframework:spring-context:"+ springVersion
+ compile "org.springframework:spring-orm:"+ springVersion
+
compile "javax.inject:javax.inject:1"
compile "org.bouncycastle:bcprov-jdk15on:1.61"
compile "com.h2database:h2:1.4.200"
diff --git a/pom.xml b/pom.xml
index 0e16ba4872..5a7786e1bc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -45,7 +45,7 @@