Add Spring Framework 4.3.8.RELEASE to ebr
diff --git a/ebr/build.gradle b/ebr/build.gradle
index 99e7657..a843f0b 100644
--- a/ebr/build.gradle
+++ b/ebr/build.gradle
@@ -1,11 +1,3 @@
-import org.apache.tools.ant.filters.ReplaceTokens
-
-import java.util.jar.JarEntry
-import java.util.jar.JarOutputStream
-import java.util.zip.ZipEntry
-import java.util.zip.ZipFile
-import java.util.zip.ZipOutputStream
-
 buildscript {
     repositories { mavenCentral() }
     dependencies {
@@ -74,9 +66,10 @@
         main = 'org.eclipse.virgo.bundlor.commandline.Bundlor'
         args '-r', propertiesPath
         args '-D', "springframeworkVersion=${springframeworkVersion}"
-        args '-i', "${->configurations.sourceBundle[0]}" // lazy GString to resolve the configuration at runtime
+        args '-i', "${-> configurations.sourceBundle[0]}" // lazy GString to resolve the configuration at runtime
         args '-m', "${artifactName}.mf"
         args '-o', outputFile
+        args '-f'
     }
 
     publishing {
@@ -96,7 +89,7 @@
     remotes {
         eclipseDotOrg {
             host = ECLIPSE_ORG_FTP_HOST
-            user =  ECLIPSE_ORG_FTP_USER
+            user = ECLIPSE_ORG_FTP_USER
             identity = file(System.properties['user.home'] + "/.ssh/${ECLIPSE_ORG_FTP_IDENTITY}")
             knownHosts = file(System.properties['user.home'] + "/.ssh/known_hosts")
         }
@@ -105,19 +98,21 @@
     def groupId = 'org.eclipse.virgo.mirrored'
     def mirrorPath = ECLIPSE_ORG_FTP_MIRROR_PATH
 
-    task upload << {
-        println "Uploading ${project.name} to ${remotes.eclipseDotOrg.host}..."
-        def artifactPath = "${groupId}/${artifactName}/${artifactVersion}"
-        ssh.run {
-            session(remotes.eclipseDotOrg) {
-                execute "mkdir -p ${mirrorPath}/${artifactPath}"
-                put from: "${buildDir}/${artifactPath}/ivy-${artifactVersion}.xml", into: "${mirrorPath}/${artifactPath}"
-                put from: "${buildDir}/${artifactPath}/ivy-${artifactVersion}.xml.sha1", into: "${mirrorPath}/${artifactPath}"
-                put from: "${buildDir}/${artifactPath}/${artifactName}-${artifactVersion}.jar", into: "${mirrorPath}/${artifactPath}"
-                put from: "${buildDir}/${artifactPath}/${artifactName}-${artifactVersion}.jar.sha1", into: "${mirrorPath}/${artifactPath}"
+    task upload {
+        doLast {
+            println "Uploading ${project.name} to ${remotes.eclipseDotOrg.host}..."
+            def artifactPath = "${groupId}/${artifactName}/${artifactVersion}"
+            ssh.run {
+                session(remotes.eclipseDotOrg) {
+                    execute "mkdir -p ${mirrorPath}/${artifactPath}"
+                    put from: "${buildDir}/${artifactPath}/ivy-${artifactVersion}.xml", into: "${mirrorPath}/${artifactPath}"
+                    put from: "${buildDir}/${artifactPath}/ivy-${artifactVersion}.xml.sha1", into: "${mirrorPath}/${artifactPath}"
+                    put from: "${buildDir}/${artifactPath}/${artifactName}-${artifactVersion}.jar", into: "${mirrorPath}/${artifactPath}"
+                    put from: "${buildDir}/${artifactPath}/${artifactName}-${artifactVersion}.jar.sha1", into: "${mirrorPath}/${artifactPath}"
+                }
             }
+            println "done."
         }
-        println "done."
     }
     upload.dependsOn publish
 }
@@ -167,7 +162,7 @@
 }
 
 test.dependsOn('copyTestBundles')
-task copyTestBundles(){
+task copyTestBundles() {
     doLast {
         configurations.testRuntime.resolvedConfiguration.resolvedArtifacts.each { artifact ->
             println artifact
diff --git a/ebr/gradle.properties b/ebr/gradle.properties
index 978f3ca..0abcf0a 100644
--- a/ebr/gradle.properties
+++ b/ebr/gradle.properties
@@ -130,7 +130,7 @@
 #CQ10978 org.springframework.webmvc
 #CQ10979 org.springframework.webmvc.portlet
 #CQ10980 org.springframework.websocket
-springframeworkVersion = 4.2.9.RELEASE
+springframeworkVersion = 4.3.8.RELEASE
 
 geminiManagementVersion = 1.0.5.RELEASE
 geminiWebVersion = 3.0.0.RC3
@@ -319,6 +319,7 @@
 freemarkerVersion = 2.3.23
 jasperreportsVersion = 6.2.0
 velocityVersion = 1.7
+benmanesCaffeineVersion = 2.3.5
 
 # spring-core
 joptSimpleVersion = 4.9
@@ -348,6 +349,7 @@
 protobufJavaFormatVersion = 1.2
 romeVersion = 1.5.1
 okhttpVersion = 2.7.0
+okhttp3Version = 3.7.0
 
 # spring-webmvc
 jxlVersion = 2.6.12
diff --git a/ebr/org.springframework.aop-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.aop-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.aop-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.aop-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.aop-4.3.9.RELEASE/org.springframework.aop.mf b/ebr/org.springframework.aop-4.3.8.RELEASE/org.springframework.aop.mf
similarity index 95%
rename from ebr/org.springframework.aop-4.3.9.RELEASE/org.springframework.aop.mf
rename to ebr/org.springframework.aop-4.3.8.RELEASE/org.springframework.aop.mf
index 726727a..21a8965 100644
--- a/ebr/org.springframework.aop-4.3.9.RELEASE/org.springframework.aop.mf
+++ b/ebr/org.springframework.aop-4.3.8.RELEASE/org.springframework.aop.mf
@@ -5,7 +5,6 @@
 Bundle-Version: ${springframeworkVersion}
 Import-Template:
  com.jamonapi.*;version="${jamonVersion:[=.=.=, +1)}";resolution:=optional,
- org.aopalliance.*;version="${orgAopAllianceVersion:[=.=.=, +1)}",
  org.apache.commons.logging.*;version="${commonsLoggingVersion:[=.=.=, +1)}",
  org.apache.commons.pool.*;version="${commonsPoolVersion:[=.=.=, +1)}";resolution:=optional,
  org.apache.commons.pool2.*;version="${commonsPool2Version:[=.=.=, +1)}";resolution:=optional,
@@ -24,3 +23,4 @@
  Import-Package,
  Export-Package,
  Tool
+
diff --git a/ebr/org.springframework.aspects-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.aspects-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.aspects-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.aspects-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.aspects-4.3.9.RELEASE/org.springframework.aspects.mf b/ebr/org.springframework.aspects-4.3.8.RELEASE/org.springframework.aspects.mf
similarity index 95%
rename from ebr/org.springframework.aspects-4.3.9.RELEASE/org.springframework.aspects.mf
rename to ebr/org.springframework.aspects-4.3.8.RELEASE/org.springframework.aspects.mf
index 7cefed2..132f4bb 100644
--- a/ebr/org.springframework.aspects-4.3.9.RELEASE/org.springframework.aspects.mf
+++ b/ebr/org.springframework.aspects-4.3.8.RELEASE/org.springframework.aspects.mf
@@ -6,6 +6,7 @@
 Import-Template:
  javax.cache;version="${javaxCacheVersion:[=.=.=, +1)}";resolution:=optional,
  javax.persistence;version="${javaxPersistenceVersion:[=.=, +1)}";resolution:=optional,
+ javax.transaction;version="${javaxTransactionVersion:[=.=, +1)}";resolution:=optional,
  org.apache.commons.logging.*;version="${commonsLoggingVersion:[=.=.=, +1)}",
  org.aspectj.*;version="${aspectjVersion:[=.=.=, +1)}";resolution:=optional,
  org.springframework.aop.*;version="${springframeworkVersion:[=.=.=.=, =.=.=.=]}",
diff --git a/ebr/org.springframework.beans-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.beans-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.beans-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.beans-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.beans-4.3.9.RELEASE/org.springframework.beans.mf b/ebr/org.springframework.beans-4.3.8.RELEASE/org.springframework.beans.mf
similarity index 100%
rename from ebr/org.springframework.beans-4.3.9.RELEASE/org.springframework.beans.mf
rename to ebr/org.springframework.beans-4.3.8.RELEASE/org.springframework.beans.mf
diff --git a/ebr/org.springframework.context-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.context-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.context-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.context-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.context-4.3.9.RELEASE/org.springframework.context.mf b/ebr/org.springframework.context-4.3.8.RELEASE/org.springframework.context.mf
similarity index 100%
rename from ebr/org.springframework.context-4.3.9.RELEASE/org.springframework.context.mf
rename to ebr/org.springframework.context-4.3.8.RELEASE/org.springframework.context.mf
diff --git a/ebr/org.springframework.context.support-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.context.support-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.context.support-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.context.support-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.context.support-4.3.9.RELEASE/org.springframework.context.support.mf b/ebr/org.springframework.context.support-4.3.8.RELEASE/org.springframework.context.support.mf
similarity index 92%
rename from ebr/org.springframework.context.support-4.3.9.RELEASE/org.springframework.context.support.mf
rename to ebr/org.springframework.context.support-4.3.8.RELEASE/org.springframework.context.support.mf
index d54c5fa..36fcabc 100644
--- a/ebr/org.springframework.context.support-4.3.9.RELEASE/org.springframework.context.support.mf
+++ b/ebr/org.springframework.context.support-4.3.8.RELEASE/org.springframework.context.support.mf
@@ -4,6 +4,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Version: ${springframeworkVersion}
 Import-Template:
+ com.github.benmanes.caffeine.cache;version="${benmanesCaffeineVersion:[=.=.=, +1)}";resolution:=optional,
  com.google.common.*;version="[19, 100)";resolution:=optional,
  commonj.*;version="${commonjVersion:[=.=.=, +1)}";resolution:=optional,
  freemarker.*;version="${freemarkerVersion:[=.=.=, +1)}";resolution:=optional,
@@ -23,6 +24,7 @@
  org.springframework.beans.*;version="${springframeworkVersion:[=.=.=.=, =.=.=.=]}",
  org.springframework.context.*;version="${springframeworkVersion:[=.=.=.=, =.=.=.=]}",
  org.springframework.core.*;version="${springframeworkVersion:[=.=.=.=, =.=.=.=]}",
+ org.springframework.lang;version="${springframeworkVersion:[=.=.=.=, =.=.=.=]}",
  org.springframework.expression.*;version="${springframeworkVersion:[=.=.=.=, =.=.=.=]}";resolution:=optional,
  org.springframework.jdbc.*;version="${springframeworkVersion:[=.=.=.=, =.=.=.=]}";resolution:=optional,
  org.springframework.jndi.*;version="${springframeworkVersion:[=.=.=.=, =.=.=.=]}";resolution:=optional,
diff --git a/ebr/org.springframework.core-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.core-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.core-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.core-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.core-4.3.9.RELEASE/org.springframework.core.mf b/ebr/org.springframework.core-4.3.8.RELEASE/org.springframework.core.mf
similarity index 100%
rename from ebr/org.springframework.core-4.3.9.RELEASE/org.springframework.core.mf
rename to ebr/org.springframework.core-4.3.8.RELEASE/org.springframework.core.mf
diff --git a/ebr/org.springframework.expression-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.expression-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.expression-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.expression-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.expression-4.3.9.RELEASE/org.springframework.expression.mf b/ebr/org.springframework.expression-4.3.8.RELEASE/org.springframework.expression.mf
similarity index 100%
rename from ebr/org.springframework.expression-4.3.9.RELEASE/org.springframework.expression.mf
rename to ebr/org.springframework.expression-4.3.8.RELEASE/org.springframework.expression.mf
diff --git a/ebr/org.springframework.jdbc-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.jdbc-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.jdbc-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.jdbc-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.jdbc-4.3.9.RELEASE/org.springframework.jdbc.mf b/ebr/org.springframework.jdbc-4.3.8.RELEASE/org.springframework.jdbc.mf
similarity index 100%
rename from ebr/org.springframework.jdbc-4.3.9.RELEASE/org.springframework.jdbc.mf
rename to ebr/org.springframework.jdbc-4.3.8.RELEASE/org.springframework.jdbc.mf
diff --git a/ebr/org.springframework.jms-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.jms-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.jms-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.jms-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.jms-4.3.9.RELEASE/org.springframework.jms.mf b/ebr/org.springframework.jms-4.3.8.RELEASE/org.springframework.jms.mf
similarity index 100%
rename from ebr/org.springframework.jms-4.3.9.RELEASE/org.springframework.jms.mf
rename to ebr/org.springframework.jms-4.3.8.RELEASE/org.springframework.jms.mf
diff --git a/ebr/org.springframework.messaging-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.messaging-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.messaging-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.messaging-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.messaging-4.3.9.RELEASE/org.springframework.messaging.mf b/ebr/org.springframework.messaging-4.3.8.RELEASE/org.springframework.messaging.mf
similarity index 100%
rename from ebr/org.springframework.messaging-4.3.9.RELEASE/org.springframework.messaging.mf
rename to ebr/org.springframework.messaging-4.3.8.RELEASE/org.springframework.messaging.mf
diff --git a/ebr/org.springframework.orm-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.orm-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.orm-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.orm-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.orm-4.3.9.RELEASE/org.springframework.orm.mf b/ebr/org.springframework.orm-4.3.8.RELEASE/org.springframework.orm.mf
similarity index 100%
rename from ebr/org.springframework.orm-4.3.9.RELEASE/org.springframework.orm.mf
rename to ebr/org.springframework.orm-4.3.8.RELEASE/org.springframework.orm.mf
diff --git a/ebr/org.springframework.oxm-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.oxm-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.oxm-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.oxm-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.oxm-4.3.9.RELEASE/org.springframework.oxm.mf b/ebr/org.springframework.oxm-4.3.8.RELEASE/org.springframework.oxm.mf
similarity index 100%
rename from ebr/org.springframework.oxm-4.3.9.RELEASE/org.springframework.oxm.mf
rename to ebr/org.springframework.oxm-4.3.8.RELEASE/org.springframework.oxm.mf
diff --git a/ebr/org.springframework.test-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.test-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.test-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.test-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.test-4.3.9.RELEASE/org.springframework.test.mf b/ebr/org.springframework.test-4.3.8.RELEASE/org.springframework.test.mf
similarity index 88%
rename from ebr/org.springframework.test-4.3.9.RELEASE/org.springframework.test.mf
rename to ebr/org.springframework.test-4.3.8.RELEASE/org.springframework.test.mf
index 1347c46..6cac6f5 100644
--- a/ebr/org.springframework.test-4.3.9.RELEASE/org.springframework.test.mf
+++ b/ebr/org.springframework.test-4.3.8.RELEASE/org.springframework.test.mf
@@ -19,6 +19,8 @@
  org.aspectj.weaver.*;version="[1.7.1, 2.0.0)";resolution:=optional,
  org.junit.*;version="[4.11.0, 5.0.0)";resolution:=optional,
  org.springframework.*;version="${springframeworkVersion:[=.=.=.=, =.=.=.=]}";resolution:=optional,
+ org.springframework.mock.*;version="${springframeworkVersion:[=.=.=.=, =.=.=.=]}";resolution:=optional,
+ org.springframework.test.*;version="${springframeworkVersion:[=.=.=.=, =.=.=.=]}";resolution:=optional,
  org.testng.*;version="[6.5.2, 7.0.0)";resolution:=optional,
  org.hamcrest.*;version="[1.3.0, 2.0.0)";resolution:=optional,
  com.jayway.jsonpath.*;version="[0.8.1, 1.0.0)";resolution:=optional,
diff --git a/ebr/org.springframework.transaction-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.transaction-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.transaction-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.transaction-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.transaction-4.3.9.RELEASE/org.springframework.transaction.mf b/ebr/org.springframework.transaction-4.3.8.RELEASE/org.springframework.transaction.mf
similarity index 100%
rename from ebr/org.springframework.transaction-4.3.9.RELEASE/org.springframework.transaction.mf
rename to ebr/org.springframework.transaction-4.3.8.RELEASE/org.springframework.transaction.mf
diff --git a/ebr/org.springframework.web-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.web-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.web-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.web-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.web-4.3.9.RELEASE/org.springframework.web.mf b/ebr/org.springframework.web-4.3.8.RELEASE/org.springframework.web.mf
similarity index 94%
rename from ebr/org.springframework.web-4.3.9.RELEASE/org.springframework.web.mf
rename to ebr/org.springframework.web-4.3.8.RELEASE/org.springframework.web.mf
index ab8eb53..48205d6 100644
--- a/ebr/org.springframework.web-4.3.9.RELEASE/org.springframework.web.mf
+++ b/ebr/org.springframework.web-4.3.8.RELEASE/org.springframework.web.mf
@@ -11,6 +11,8 @@
  com.googlecode.protobuf.format;version="${protobufJavaFormatVersion:[=.=.=, +1)}";resolution:=optional,
  com.rometools.rome.*;version="${romeVersion:[=.=.=, +1)}";resolution:=optional,
  com.squareup.okhttp.*;version="${okhttpVersion:[=.=.=, +1)}";resolution:=optional,
+ com.squareup.okhttp3.*;version="${okhttp3Version:[=.=.=, +1)}";resolution:=optional,
+ okhttp3.*;version="${okhttp3Version:[=.=.=, +1)}";resolution:=optional,
  com.sun.net.*;version="0";resolution:=optional,
  groovy.*;version="${groovyVersion:[=.=.=, +1)}";resolution:="optional",
  io.netty.*;version="${nettyVersion:[=.=.=, +1)}";resolution:=optional,
@@ -26,6 +28,7 @@
  javax.servlet.jsp.*;version="[2.2.1, 3)";resolution:=optional,
  javax.validation.*;version="[1, 2)";resolution:=optional,
  javax.xml.*;version="0";resolution:=optional,
+ javax.net.ssl;version="0";resolution:=optional,
  org.aopalliance.*;version="${orgAopAllianceVersion:[=.=.=, +1)}",
  org.apache.commons.fileupload.*;version="${commonsFileuploadVersion:[=.=.=, +1)}";resolution:=optional,
  org.apache.commons.httpclient.*;version="[3.1.0, 4.0.0)";resolution:=optional,
diff --git a/ebr/org.springframework.webmvc-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.webmvc-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.webmvc-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.webmvc-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.webmvc-4.3.9.RELEASE/org.springframework.webmvc.mf b/ebr/org.springframework.webmvc-4.3.8.RELEASE/org.springframework.webmvc.mf
similarity index 100%
rename from ebr/org.springframework.webmvc-4.3.9.RELEASE/org.springframework.webmvc.mf
rename to ebr/org.springframework.webmvc-4.3.8.RELEASE/org.springframework.webmvc.mf
diff --git a/ebr/org.springframework.webmvc.portlet-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.webmvc.portlet-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.webmvc.portlet-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.webmvc.portlet-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.webmvc.portlet-4.3.9.RELEASE/org.springframework.webmvc.portlet.mf b/ebr/org.springframework.webmvc.portlet-4.3.8.RELEASE/org.springframework.webmvc.portlet.mf
similarity index 100%
rename from ebr/org.springframework.webmvc.portlet-4.3.9.RELEASE/org.springframework.webmvc.portlet.mf
rename to ebr/org.springframework.webmvc.portlet-4.3.8.RELEASE/org.springframework.webmvc.portlet.mf
diff --git a/ebr/org.springframework.websocket-4.3.9.RELEASE/build.gradle b/ebr/org.springframework.websocket-4.3.8.RELEASE/build.gradle
similarity index 100%
rename from ebr/org.springframework.websocket-4.3.9.RELEASE/build.gradle
rename to ebr/org.springframework.websocket-4.3.8.RELEASE/build.gradle
diff --git a/ebr/org.springframework.websocket-4.3.9.RELEASE/org.springframework.websocket.mf b/ebr/org.springframework.websocket-4.3.8.RELEASE/org.springframework.websocket.mf
similarity index 100%
rename from ebr/org.springframework.websocket-4.3.9.RELEASE/org.springframework.websocket.mf
rename to ebr/org.springframework.websocket-4.3.8.RELEASE/org.springframework.websocket.mf
diff --git a/ebr/settings.gradle b/ebr/settings.gradle
index 79cff51..d765608 100644
--- a/ebr/settings.gradle
+++ b/ebr/settings.gradle
@@ -16,6 +16,6 @@
 include "org.springframework.webmvc.portlet-${springframeworkVersion}"
 include "org.springframework.websocket-${springframeworkVersion}"
 
-include "org.springframework.test-${springframeworkVersion}"
+// include "org.springframework.test-${springframeworkVersion}"
 
 include "org.aspectj.weaver-${aspectjVersion}"