diff --git a/base-test/org.eclipse.jdt.groovy.core.tests.compiler/src/org/eclipse/jdt/groovy/core/tests/basic/AbstractGroovyRegressionTest.java b/base-test/org.eclipse.jdt.groovy.core.tests.compiler/src/org/eclipse/jdt/groovy/core/tests/basic/AbstractGroovyRegressionTest.java index dfe4a7aeb5..7733654236 100644 --- a/base-test/org.eclipse.jdt.groovy.core.tests.compiler/src/org/eclipse/jdt/groovy/core/tests/basic/AbstractGroovyRegressionTest.java +++ b/base-test/org.eclipse.jdt.groovy.core.tests.compiler/src/org/eclipse/jdt/groovy/core/tests/basic/AbstractGroovyRegressionTest.java @@ -36,7 +36,7 @@ protected String[] getDefaultClassPaths() { String[] newcps = new String[cps.length+2]; System.arraycopy(cps,0,newcps,0,cps.length); try { - URL groovyJar = Platform.getBundle("org.codehaus.groovy").getEntry("lib/groovy-all-2.4.0-rc-2.jar"); + URL groovyJar = Platform.getBundle("org.codehaus.groovy").getEntry("lib/groovy-all-2.4.0.jar"); if (groovyJar==null) { groovyJar = Platform.getBundle("org.codehaus.groovy").getEntry("lib/groovy-all-2.3.7.jar"); if (groovyJar==null) { diff --git a/base/org.codehaus.groovy24/.classpath b/base/org.codehaus.groovy24/.classpath index 29fceffd61..c9a479a2cb 100644 --- a/base/org.codehaus.groovy24/.classpath +++ b/base/org.codehaus.groovy24/.classpath @@ -7,7 +7,7 @@ - + diff --git a/base/org.codehaus.groovy24/META-INF/MANIFEST.MF b/base/org.codehaus.groovy24/META-INF/MANIFEST.MF index 04baaa3bf5..71e569b2e6 100644 --- a/base/org.codehaus.groovy24/META-INF/MANIFEST.MF +++ b/base/org.codehaus.groovy24/META-INF/MANIFEST.MF @@ -6,7 +6,7 @@ Bundle-Version: 2.4.0.qualifier Bundle-ClassPath: groovy-eclipse.jar, lib/ivy-2.3.0.jar, lib/bsf-2.4.0.jar, - lib/groovy-all-2.4.0-rc-2.jar, + lib/groovy-all-2.4.0.jar, eclipse-trace.jar Groovy-Runtime-Jars: groovy.jar Export-Package: groovy.beans, diff --git a/base/org.codehaus.groovy24/about.html b/base/org.codehaus.groovy24/about.html index 624e4f6149..4b88ecff7b 100644 --- a/base/org.codehaus.groovy24/about.html +++ b/base/org.codehaus.groovy24/about.html @@ -34,21 +34,21 @@

bsf-2.4.0.jar

  • License text: asl-v20.txt
  • -

    groovy-all-2.4.0-rc-2-sources.jar

    +

    groovy-all-2.4.0-sources.jar

    -

    groovy-all-2.4.0-rc-2.jar

    +

    groovy-all-2.4.0.jar

      -
    • Obtained from: http://dist.groovy.codehaus.org/distributions/groovy-binary-2.4.0-rc-2.zip
    • -
    • Sources available at: http://dist.groovy.codehaus.org/distributions/groovy-src-2.4.0-rc-2.zip
    • +
    • Obtained from: http://dist.groovy.codehaus.org/distributions/groovy-binary-2.4.0.zip
    • +
    • Sources available at: http://dist.groovy.codehaus.org/distributions/groovy-src-2.4.0.zip
    • License kind: ASL
    • License URL: http://www.apache.org/licenses/LICENSE-2.0.html
    • License text: asl-v20.txt
    • diff --git a/base/org.codehaus.groovy24/lib/groovy-2.4.0-rc-2-sources.jar b/base/org.codehaus.groovy24/lib/groovy-2.4.0-sources.jar similarity index 99% rename from base/org.codehaus.groovy24/lib/groovy-2.4.0-rc-2-sources.jar rename to base/org.codehaus.groovy24/lib/groovy-2.4.0-sources.jar index c4dbb1bf8e..4f09d951ae 100644 Binary files a/base/org.codehaus.groovy24/lib/groovy-2.4.0-rc-2-sources.jar and b/base/org.codehaus.groovy24/lib/groovy-2.4.0-sources.jar differ diff --git a/base/org.codehaus.groovy24/lib/groovy-all-2.4.0-rc-2.jar b/base/org.codehaus.groovy24/lib/groovy-all-2.4.0.jar similarity index 92% rename from base/org.codehaus.groovy24/lib/groovy-all-2.4.0-rc-2.jar rename to base/org.codehaus.groovy24/lib/groovy-all-2.4.0.jar index 63b0841017..39d13c1f78 100644 Binary files a/base/org.codehaus.groovy24/lib/groovy-all-2.4.0-rc-2.jar and b/base/org.codehaus.groovy24/lib/groovy-all-2.4.0.jar differ diff --git a/base/org.codehaus.groovy24/script/org/codehaus/groovy23/UpdateExportedPackages.java b/base/org.codehaus.groovy24/script/org/codehaus/groovy23/UpdateExportedPackages.java index ccbeff20e9..5ec30374bf 100644 --- a/base/org.codehaus.groovy24/script/org/codehaus/groovy23/UpdateExportedPackages.java +++ b/base/org.codehaus.groovy24/script/org/codehaus/groovy23/UpdateExportedPackages.java @@ -36,7 +36,7 @@ */ public class UpdateExportedPackages { - public static final String GROOVY_ALL_PATH = "lib/groovy-all-2.4.0-rc-2.jar"; + public static final String GROOVY_ALL_PATH = "lib/groovy-all-2.4.0.jar"; public static final String MANIFEST = "META-INF/MANIFEST.MF"; public static void main(String[] args) throws Exception { diff --git a/base/org.codehaus.groovy24/src/org/codehaus/groovy/activator/GroovyActivator.java b/base/org.codehaus.groovy24/src/org/codehaus/groovy/activator/GroovyActivator.java index 505e6b1b26..8adf51fcd4 100644 --- a/base/org.codehaus.groovy24/src/org/codehaus/groovy/activator/GroovyActivator.java +++ b/base/org.codehaus.groovy24/src/org/codehaus/groovy/activator/GroovyActivator.java @@ -30,7 +30,7 @@ public class GroovyActivator extends Plugin { public static final String PLUGIN_ID = "org.codehaus.groovy"; //$NON-NLS-1$ - public static final String GROOVY_ALL_JAR = "lib/groovy-all-2.4.0-rc-2.jar"; //$NON-NLS-1$ + public static final String GROOVY_ALL_JAR = "lib/groovy-all-2.4.0.jar"; //$NON-NLS-1$ public static URL GROOVY_ALL_JAR_URL;