diff --git a/spring-aop/src/test/resources/org/springframework/aop/target/CommonsPoolTargetSourceProxyTests-context.xml b/spring-aop/src/test/resources/org/springframework/aop/target/CommonsPoolTargetSourceProxyTests-context.xml
deleted file mode 100644
index 07e9e4d3d9..0000000000
--- a/spring-aop/src/test/resources/org/springframework/aop/target/CommonsPoolTargetSourceProxyTests-context.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/spring-context/src/test/resources/org/springframework/aop/target/CommonsPoolTargetSourceTests-context.xml b/spring-context/src/test/resources/org/springframework/aop/target/CommonsPoolTargetSourceTests-context.xml
deleted file mode 100644
index 2dd0157922..0000000000
--- a/spring-context/src/test/resources/org/springframework/aop/target/CommonsPoolTargetSourceTests-context.xml
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
- 10
-
-
-
- prototypeTest
- 25
-
-
-
-
- getPoolingConfigMixin
-
-
-
-
-
-
-
- nop
-
-
-
-
-
-
-
-
- poolConfigAdvisor
-
- true
-
-
-
-
-
-
-
-
- prototypePerson
- 10
-
-
-
-
- serializableNop
-
-
-
-
-
-
-
-
-
-
-
- serializableNop
-
-
-
\ No newline at end of file
diff --git a/spring-context/src/test/resources/org/springframework/scripting/groovy/jruby-with-xsd-proxy-target-class.xml b/spring-context/src/test/resources/org/springframework/scripting/groovy/jruby-with-xsd-proxy-target-class.xml
deleted file mode 100644
index 58a9b4027b..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/groovy/jruby-with-xsd-proxy-target-class.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/AdvisedJRubyScriptFactoryTests-beanNameAutoProxyCreator.xml b/spring-context/src/test/resources/org/springframework/scripting/jruby/AdvisedJRubyScriptFactoryTests-beanNameAutoProxyCreator.xml
deleted file mode 100644
index 1516ac2dbc..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/AdvisedJRubyScriptFactoryTests-beanNameAutoProxyCreator.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/AdvisedJRubyScriptFactoryTests-factoryBean.xml b/spring-context/src/test/resources/org/springframework/scripting/jruby/AdvisedJRubyScriptFactoryTests-factoryBean.xml
deleted file mode 100644
index 2cd55ee7df..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/AdvisedJRubyScriptFactoryTests-factoryBean.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/Broken.rb b/spring-context/src/test/resources/org/springframework/scripting/jruby/Broken.rb
deleted file mode 100644
index 0e16bb7758..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/Broken.rb
+++ /dev/null
@@ -1,4 +0,0 @@
-In A Station Of The Metro
-
-the apparition of these faces in the crowd
-petals on a wet black bough
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/Calculator.rb b/spring-context/src/test/resources/org/springframework/scripting/jruby/Calculator.rb
deleted file mode 100644
index d3785e03f7..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/Calculator.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-require 'java'
-
-class RubyCalculator
- include org.springframework.scripting.Calculator
-
- def add(x, y)
- x + y
- end
-end
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/Messenger.rb b/spring-context/src/test/resources/org/springframework/scripting/jruby/Messenger.rb
deleted file mode 100644
index 73268f0382..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/Messenger.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-require 'java'
-
-class RubyMessenger
- include org.springframework.scripting.Messenger
-
- def setMessage(message)
- @@message = message
- end
-
- def getMessage
- @@message
- end
-
- def setTestBean(testBean)
- @@testBean = testBean
- end
-
- def getTestBean
- @@testBean
- end
-end
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/MessengerWithInstance.rb b/spring-context/src/test/resources/org/springframework/scripting/jruby/MessengerWithInstance.rb
deleted file mode 100644
index 3bdb75e3c9..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/MessengerWithInstance.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-require 'java'
-
-class RubyMessenger
- include org.springframework.scripting.ConfigurableMessenger
-
- @@message = "Hello World!"
-
- def setMessage(message)
- @@message = message
- end
-
- def getMessage
- @@message
- end
-
- def setTestBean(testBean)
- @@testBean = testBean
- end
-
- def getTestBean
- @@testBean
- end
-end
-
-RubyMessenger.new
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/Printer.rb b/spring-context/src/test/resources/org/springframework/scripting/jruby/Printer.rb
deleted file mode 100644
index 7f62246261..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/Printer.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-require 'java'
-
-class RubyPrinter
- include org.springframework.scripting.jruby.Printer
-
- def print(obj)
- puts obj.getContent
- end
-end
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/PrinterWithInstance.rb b/spring-context/src/test/resources/org/springframework/scripting/jruby/PrinterWithInstance.rb
deleted file mode 100644
index 58f8a7b512..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/PrinterWithInstance.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-require 'java'
-
-class RubyPrinter
- include org.springframework.scripting.jruby.Printer
-
- def print(obj)
- puts obj.getContent
- end
-end
-
-RubyPrinter.new
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/jruby-aop.xml b/spring-context/src/test/resources/org/springframework/scripting/jruby/jruby-aop.xml
deleted file mode 100644
index 6fa5b5b64f..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/jruby-aop.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/jruby-with-xsd-jsr223.xml b/spring-context/src/test/resources/org/springframework/scripting/jruby/jruby-with-xsd-jsr223.xml
deleted file mode 100644
index c07e66dc45..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/jruby-with-xsd-jsr223.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
- require 'java'
-
- class RubyCalculator
- include org.springframework.scripting.Calculator
-
- def add(x, y)
- x + y
- end
- end
-
- RubyCalculator.new
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/jruby-with-xsd.xml b/spring-context/src/test/resources/org/springframework/scripting/jruby/jruby-with-xsd.xml
deleted file mode 100644
index 98536d2ec2..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/jruby-with-xsd.xml
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-require 'java'
-
-class RubyCalculator
- include org.springframework.scripting.Calculator
-
- def add(x, y)
- x + y
- end
-end
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyBrokenContext.xml b/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyBrokenContext.xml
deleted file mode 100644
index 947cf0d821..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyBrokenContext.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyContext.xml b/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyContext.xml
deleted file mode 100644
index 11f4fb56f0..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyContext.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
-
-
-
- inline:
-require 'java'
-
-class RubyCalculator
- include org.springframework.scripting.Calculator
-
- def add(x, y)
- x + y
- end
-end
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyContextForPrimitives.xml b/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyContextForPrimitives.xml
deleted file mode 100644
index 06b4e73ab5..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyContextForPrimitives.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
-
-
-
-
-
- 0
- end
-
- def concatenate(c, d)
- return ("" << c) << d;
- end
-
- def echo(c)
- c
- end
-
-end
- ]]>
-
-
-
-
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyContextForWrappers.xml b/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyContextForWrappers.xml
deleted file mode 100644
index f4ed0d736d..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyContextForWrappers.xml
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
-
-
-
-
-
- 0
- end
-
- def concatenate(c, d)
- return ("" << c) << d;
- end
-
- def echo(c)
- c
- end
-
- def concatArrayOfIntegerWrappers(numbers)
- buffer = ""
- numbers.each do |number|
- buffer << number.to_s
- end
- return buffer
- end
-
- def populate(x, y)
- [x, y]
- end
-
- def createListOfLists(x, y, z)
- [[x], [y], [z]]
- end
-
- def toMap(key, value)
- {key => value}
- end
-
-end
- ]]>
-
-
-
-
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyContextWithJsr223.xml b/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyContextWithJsr223.xml
deleted file mode 100644
index f552bc90c2..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyContextWithJsr223.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- inline:
-require 'java'
-
-class RubyCalculator
- include org.springframework.scripting.Calculator
-
- def add(x, y)
- x + y
- end
-end
-
-RubyCalculator.new
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyRefreshableContext.xml b/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyRefreshableContext.xml
deleted file mode 100644
index 2b9c694a38..0000000000
--- a/spring-context/src/test/resources/org/springframework/scripting/jruby/jrubyRefreshableContext.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-