Skip to content

Commit

Permalink
Groovy 2.4.0 final
Browse files Browse the repository at this point in the history
  • Loading branch information
aclement committed Jan 21, 2015
1 parent ef30abc commit 2960cc8
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion base/org.codehaus.groovy24/.classpath
Expand Up @@ -7,7 +7,7 @@
<classpathentry kind="src" path="script"/>
<classpathentry exported="true" kind="lib" path="lib/ivy-2.3.0.jar" sourcepath="lib/ivy-2.3.0-sources.jar"/>
<classpathentry exported="true" kind="lib" path="lib/bsf-2.4.0.jar"/>
<classpathentry exported="true" kind="lib" path="lib/groovy-all-2.4.0-rc-2.jar" sourcepath="lib/groovy-2.4.0-rc-2-sources.jar"/>
<classpathentry exported="true" kind="lib" path="lib/groovy-all-2.4.0.jar" sourcepath="lib/groovy-2.4.0-sources.jar"/>
<classpathentry exported="true" kind="con" path="GROOVY_DSL_SUPPORT"/>
<classpathentry kind="output" path="bin"/>
</classpath>
2 changes: 1 addition & 1 deletion base/org.codehaus.groovy24/META-INF/MANIFEST.MF
Expand Up @@ -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,
Expand Down
10 changes: 5 additions & 5 deletions base/org.codehaus.groovy24/about.html
Expand Up @@ -34,21 +34,21 @@ <h4>bsf-2.4.0.jar</h4>
<li>License text: <a href="about_files/asl-v20.txt">asl-v20.txt</a></li>
</ul>

<h4>groovy-all-2.4.0-rc-2-sources.jar</h4>
<h4>groovy-all-2.4.0-sources.jar</h4>

<ul>
<li>Obtained from: <a href="http://dist.groovy.codehaus.org/distributions/groovy-src-2.4.0-rc-2.zip">http://dist.groovy.codehaus.org/distributions/groovy-src-2.4.0-rc-2.zip</a></li>
<li>Obtained from: <a href="http://dist.groovy.codehaus.org/distributions/groovy-src-2.4.0.zip">http://dist.groovy.codehaus.org/distributions/groovy-src-2.4.0.zip</a></li>
<li>Sources available at: This jar is a source jar</li>
<li>License kind: ASL</li>
<li>License URL: <a href="http://www.apache.org/licenses/LICENSE-2.0.html">http://www.apache.org/licenses/LICENSE-2.0.html</a></li>
<li>License text: <a href="about_files/asl-v20.txt">asl-v20.txt</a></li>
</ul>

<h4>groovy-all-2.4.0-rc-2.jar</h4>
<h4>groovy-all-2.4.0.jar</h4>

<ul>
<li>Obtained from: <a href="http://dist.groovy.codehaus.org/distributions/groovy-binary-2.4.0-rc-2.zip">http://dist.groovy.codehaus.org/distributions/groovy-binary-2.4.0-rc-2.zip</a></li>
<li>Sources available at: <a href="http://dist.groovy.codehaus.org/distributions/groovy-src-2.4.0-rc-2.zip">http://dist.groovy.codehaus.org/distributions/groovy-src-2.4.0-rc-2.zip</a></li>
<li>Obtained from: <a href="http://dist.groovy.codehaus.org/distributions/groovy-binary-2.4.0.zip">http://dist.groovy.codehaus.org/distributions/groovy-binary-2.4.0.zip</a></li>
<li>Sources available at: <a href="http://dist.groovy.codehaus.org/distributions/groovy-src-2.4.0.zip">http://dist.groovy.codehaus.org/distributions/groovy-src-2.4.0.zip</a></li>
<li>License kind: ASL</li>
<li>License URL: <a href="http://www.apache.org/licenses/LICENSE-2.0.html">http://www.apache.org/licenses/LICENSE-2.0.html</a></li>
<li>License text: <a href="about_files/asl-v20.txt">asl-v20.txt</a></li>
Expand Down
Binary file not shown.
Binary file not shown.
Expand Up @@ -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 {
Expand Down
Expand Up @@ -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;

Expand Down

0 comments on commit 2960cc8

Please sign in to comment.