Clarified support for JRuby 1.5+ and Groovy 1.7+

This commit is contained in:
Juergen Hoeller
2013-03-19 22:40:14 +01:00
parent 8832d59b7b
commit a272fd790a
3 changed files with 7 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2012 the original author or authors.
* Copyright 2002-2013 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,6 +43,8 @@ import org.springframework.util.ClassUtils;
* {@link org.springframework.scripting.support.ScriptFactoryPostProcessor};
* see the latter's javadoc} for a configuration example.
*
* <p>Note: Spring 4.0 supports Groovy 1.7 and higher.
*
* @author Juergen Hoeller
* @author Rob Harrop
* @author Rod Johnson

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2012 the original author or authors.
* Copyright 2002-2013 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -37,6 +37,8 @@ import org.springframework.util.ClassUtils;
* {@link org.springframework.scripting.support.ScriptFactoryPostProcessor};
* see the latter's javadoc for a configuration example.
*
* <p>Note: Spring 4.0 supports JRuby 1.5 and higher.
*
* @author Juergen Hoeller
* @author Rob Harrop
* @since 2.0

View File

@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils;
/**
* Utility methods for handling JRuby-scripted objects.
*
* <p>As of Spring 3.0, this class requires JRuby 1.1 or higher.
* <p>Note: Spring 4.0 supports JRuby 1.5 and higher.
*
* @author Rob Harrop
* @author Juergen Hoeller