diff --git a/config/config.gradle b/config/config.gradle
index 57fe44bb78..ada3e7effb 100644
--- a/config/config.gradle
+++ b/config/config.gradle
@@ -20,7 +20,9 @@ dependencies {
project(':spring-security-openid'),
"org.springframework:spring-web:$springVersion",
"org.springframework:spring-webmvc:$springVersion",
- "org.aspectj:aspectjweaver:$aspectjVersion"
+ "org.aspectj:aspectjweaver:$aspectjVersion",
+ "org.springframework:spring-jdbc:$springVersion",
+ "org.springframework:spring-tx:$springVersion"
provided "org.apache.tomcat:tomcat-servlet-api:$servletApiVersion"
diff --git a/config/pom.xml b/config/pom.xml
index fb9a5c4570..83c04e8610 100644
--- a/config/pom.xml
+++ b/config/pom.xml
@@ -126,6 +126,20 @@
compile
true
+
+ org.springframework
+ spring-jdbc
+ 3.2.3.RELEASE
+ compile
+ true
+
+
+ org.springframework
+ spring-tx
+ 3.2.3.RELEASE
+ compile
+ true
+
org.springframework
spring-web
@@ -326,12 +340,6 @@
3.2.3.RELEASE
test
-
- org.springframework
- spring-jdbc
- 3.2.3.RELEASE
- test
-
org.springframework
spring-orm
@@ -344,11 +352,5 @@
3.2.3.RELEASE
test
-
- org.springframework
- spring-tx
- 3.2.3.RELEASE
- test
-
diff --git a/web/pom.xml b/web/pom.xml
index 5556d2ddfe..721f7fe1fb 100644
--- a/web/pom.xml
+++ b/web/pom.xml
@@ -91,6 +91,12 @@
3.2.3.RELEASE
compile
+
+ org.springframework
+ spring-web
+ 3.2.3.RELEASE
+ compile
+
commons-logging
commons-logging
diff --git a/web/web.gradle b/web/web.gradle
index 046872b8ab..cc43b0cdcf 100644
--- a/web/web.gradle
+++ b/web/web.gradle
@@ -5,7 +5,7 @@ dependencies {
'aopalliance:aopalliance:1.0',
"org.springframework:spring-beans:$springVersion",
"org.springframework:spring-context:$springVersion",
- "org.springframework:spring-expression:$springVersion"
+ "org.springframework:spring-expression:$springVersion",
"org.springframework:spring-web:$springVersion"
optional "org.springframework:spring-webmvc:$springVersion",