Browse Source

Clarified support for JRuby 1.5+ and Groovy 1.7+

pull/263/head
Juergen Hoeller 12 years ago
parent
commit
a272fd790a
  1. 4
      spring-context/src/main/java/org/springframework/scripting/groovy/GroovyScriptFactory.java
  2. 4
      spring-context/src/main/java/org/springframework/scripting/jruby/JRubyScriptFactory.java
  3. 2
      spring-context/src/main/java/org/springframework/scripting/jruby/JRubyScriptUtils.java

4
spring-context/src/main/java/org/springframework/scripting/groovy/GroovyScriptFactory.java

@ -1,5 +1,5 @@ @@ -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; @@ -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

4
spring-context/src/main/java/org/springframework/scripting/jruby/JRubyScriptFactory.java

@ -1,5 +1,5 @@ @@ -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; @@ -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

2
spring-context/src/main/java/org/springframework/scripting/jruby/JRubyScriptUtils.java

@ -45,7 +45,7 @@ import org.springframework.util.StringUtils; @@ -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

Loading…
Cancel
Save