You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@groovy.apache.org by Paul King <pa...@asert.com.au> on 2016/12/30 06:25:31 UTC

[VOTE] Release Groovy 2.4.8

Dear community,

I am happy to start the VOTE thread for a Groovy 2.4.8 release!

This release includes 82 bug fixes/improvements as outlined in the changelog:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12318123&version=12335950

Tag: https://git1-us-west.apache.org/repos/asf?p=groovy.git;a=tag;h=refs/tags/GROOVY_2_4_8
Tag commit id: 0911b621d2b9eb9de1edc4743dc12ee0b201db5f

The artifacts to be voted on are located as follows.
Source release: https://dist.apache.org/repos/dist/dev/groovy/2.4.8/sources
Convenience binaries:
https://dist.apache.org/repos/dist/dev/groovy/2.4.8/distribution
SVN version id: 17618

Release artifacts are signed with the following key:
https://dist.apache.org/repos/dist/dev/groovy/KEYS

Please vote on releasing this package as Apache Groovy 2.4.8.

Officially, the vote is open for the next 72 hours and passes if a
majority of at least three +1 PMC votes are cast. Given the time of
year, I'll wait an extra day before sending a vote summary.

[ ] +1 Release Apache Groovy 2.4.8
[ ]  0 I don't have a strong opinion about this, but I assume it's ok
[ ] -1 Do not release Apache Groovy 2.4.8 because...

Here is my vote:

+1 (binding)

Re: [VOTE] Release Groovy 2.4.8

Posted by Bahman Movaqar <Ba...@BahmanM.com>.
On 12/30/2016 07:25 AM, Paul King wrote:
> Dear community,
> 
> I am happy to start the VOTE thread for a Groovy 2.4.8 release!
> 
> This release includes 82 bug fixes/improvements as outlined in the changelog:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12318123&version=12335950
> 
> Tag: https://git1-us-west.apache.org/repos/asf?p=groovy.git;a=tag;h=refs/tags/GROOVY_2_4_8
> Tag commit id: 0911b621d2b9eb9de1edc4743dc12ee0b201db5f

I'm unable to run `./gradlew build` (tried both OpenJDK and Oracle JDK 1.8).


    $ ./gradew build --info
    ...
    ...
    ...
    Executing
org.gradle.api.internal.tasks.compile.ApiGroovyCompiler@10231748 in
compiler daemon.
    Compiling with JDK Java compiler API.
    warning: [options] bootstrap class path not set in conjunction with
-source 1.6
    warning: Implicitly compiled files were not subject to annotation
processing.
      Use -proc:none to disable annotation processing or -implicit to
specify a policy for implicit compilation.
    Note: Some input files use or override a deprecated API.
    Note: Recompile with -Xlint:deprecation for details.
    Note: Some input files use unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    1 warning
    Exception executing
org.gradle.api.internal.tasks.compile.ApiGroovyCompiler@10231748 in
compiler daemon: java.lang.NoSuchMethodError:
org.codehaus.groovy.runtime.DefaultGroovyMethods.each([Ljava/lang/Object;Lgroovy/lang/Closure;)[Ljava/lang/Object;.
    :compileTestGroovy FAILED
    :compileTestGroovy (Thread[Daemon worker,5,main]) completed. Took
15.289 secs.

    FAILURE: Build failed with an exception.

    * What went wrong:
    Execution failed for task ':compileTestGroovy'.
    >
org.codehaus.groovy.runtime.DefaultGroovyMethods.each([Ljava/lang/Object;Lgroovy/lang/Closure;)[Ljava/lang/Object;

    * Try:
    Run with --stacktrace option to get the stack trace. Run with
--debug option to get more log output.

    BUILD FAILED

    Total time: 28.546 secs
    Stopped 1 compiler daemon(s).


What could I be missing?

--
Bahman Movaqar

http://BahmanM.com - https://twitter.com/bahman__m
https://github.com/bahmanm - https://gist.github.com/bahmanm
PGP Key ID: 0x6AB5BD68 (keyserver2.pgp.com)

Re: [VOTE] Release Groovy 2.4.8

Posted by Paul King <pa...@asert.com.au>.
Well, it's designed so that we have any easy way to bootstrap from the
source distro for people who aren't familiar with gradle. No need to
know about any built-in commands or properties. We could get rid of it
but it would make the instructions slightly more verbose and of course
different between versions.

On Tue, Jan 3, 2017 at 5:49 AM, Keegan Witt <ke...@gmail.com> wrote:
> It looks like it's there for the downloadWrapper task (wrapper.gradle).  But
> I'm not sure why we have that defined.  I've always just used
> gradle-wrapper.properties and "gradlew wrapper" to update the wrapper jar
> and gradlew scripts.  If we don't need it anymore, I say we remove both the
> property and wrapper.gradle.
>
> -Keegan
>
> On Sat, Dec 31, 2016 at 7:29 AM, Paul King <pa...@asert.com.au> wrote:
>>
>> I imagine some of them could be moved but I think what we have is the
>> more common place to have those versions.
>> I am unsure whether an IDE assistance would be affected with such a
>> move - I haven't actually tried.
>>
>> Cheers, Paul.
>>
>> On Sat, Dec 31, 2016 at 9:57 PM, Jochen Theodorou <bl...@gmx.org>
>> wrote:
>> > On 31.12.2016 12:38, Paul King wrote:
>> > [...]
>> >>
>> >> There is a 'gradleVersion' property (set in the build.gradle file)
>> >> which is used when bootstrapping the wrapper, so no need for further
>> >> instructions in that regard.
>> >
>> >
>> > ah, ok. I am used to find those things in gradle.properties now... Is
>> > there
>> > any reason we cannot transfer all those properties in that ext block
>> > there?
>> >
>> > bye Jochen
>> >
>
>

Re: [VOTE] Release Groovy 2.4.8

Posted by Keegan Witt <ke...@gmail.com>.
It looks like it's there for the downloadWrapper task (wrapper.gradle).
But I'm not sure why we have that defined.  I've always just used
gradle-wrapper.properties and "gradlew wrapper" to update the wrapper jar
and gradlew scripts.  If we don't need it anymore, I say we remove both the
property and wrapper.gradle.

-Keegan

On Sat, Dec 31, 2016 at 7:29 AM, Paul King <pa...@asert.com.au> wrote:

> I imagine some of them could be moved but I think what we have is the
> more common place to have those versions.
> I am unsure whether an IDE assistance would be affected with such a
> move - I haven't actually tried.
>
> Cheers, Paul.
>
> On Sat, Dec 31, 2016 at 9:57 PM, Jochen Theodorou <bl...@gmx.org>
> wrote:
> > On 31.12.2016 12:38, Paul King wrote:
> > [...]
> >>
> >> There is a 'gradleVersion' property (set in the build.gradle file)
> >> which is used when bootstrapping the wrapper, so no need for further
> >> instructions in that regard.
> >
> >
> > ah, ok. I am used to find those things in gradle.properties now... Is
> there
> > any reason we cannot transfer all those properties in that ext block
> there?
> >
> > bye Jochen
> >
>

Re: [VOTE] Release Groovy 2.4.8

Posted by Paul King <pa...@asert.com.au>.
I imagine some of them could be moved but I think what we have is the
more common place to have those versions.
I am unsure whether an IDE assistance would be affected with such a
move - I haven't actually tried.

Cheers, Paul.

On Sat, Dec 31, 2016 at 9:57 PM, Jochen Theodorou <bl...@gmx.org> wrote:
> On 31.12.2016 12:38, Paul King wrote:
> [...]
>>
>> There is a 'gradleVersion' property (set in the build.gradle file)
>> which is used when bootstrapping the wrapper, so no need for further
>> instructions in that regard.
>
>
> ah, ok. I am used to find those things in gradle.properties now... Is there
> any reason we cannot transfer all those properties in that ext block there?
>
> bye Jochen
>

Re: [VOTE] Release Groovy 2.4.8

Posted by Jochen Theodorou <bl...@gmx.org>.
On 31.12.2016 12:38, Paul King wrote:
[...]
> There is a 'gradleVersion' property (set in the build.gradle file)
> which is used when bootstrapping the wrapper, so no need for further
> instructions in that regard.

ah, ok. I am used to find those things in gradle.properties now... Is 
there any reason we cannot transfer all those properties in that ext 
block there?

bye Jochen


Re: [VOTE] Release Groovy 2.4.8

Posted by Paul King <pa...@asert.com.au>.
Yes, I guess Gradle 3 had breaking changes in their groovydoc tasks. I
guess we should be mentioning that in the README somewhere. Any gradle
version before 3 should work and there be some hack for 3 too no doubt
- I'll see what I can do.

There is a 'gradleVersion' property (set in the build.gradle file)
which is used when bootstrapping the wrapper, so no need for further
instructions in that regard.

Cheers, Paul.

On Sat, Dec 31, 2016 at 7:45 PM, Jochen Theodorou <bl...@gmx.org> wrote:
> Is it maybe because Groovy 2.4.8 is supposed to use Gradle 2.3 and that this
> build then does not work with Gradle 3.2.1, the version master is using?
>
> Just tested, and yes, this seems to be the cause. This means you cannot
> create the wrapper using Gradle 3.2.1 because the build file is not
> compatible.
>
> Besides that... where do we define the gradle version to be used for the
> build? If not any gradle version will work we need to specify that in the
> build instructions for the source distribution at least.
>
> bye Jochen
>
> On 31.12.2016 03:25, Paul King wrote:
>>
>> The README gives bootstrap instructions for building from source. In
>> particular, you should not copy gradlew from another groovy install.
>> Instead you can just run any gradle and that will effectively do a
>> "gradle wrapper" which will get the correct gradle version. Let me
>> know if that works.
>>
>> Cheers, Paul.
>>
>> On Sat, Dec 31, 2016 at 11:16 AM, Jochen Theodorou <bl...@gmx.org>
>> wrote:
>>>
>>> On 30.12.2016 22:13, Paul King wrote:
>>>>
>>>>
>>>> Can you give some more info? I can't replicate.
>>>
>>>
>>>
>>> I copied the 3.2.1 wrapper over and then tried to start... this is what I
>>> got.
>>> Just tried again using another 3.2.1 wrapper and this time I got
>>>
>>>> FAILURE: Build failed with an exception.
>>>>
>>>> * Where:
>>>> Script '/tmp/r/groovy-2.4.8/gradle/docs.gradle' line: 63
>>>>
>>>> * What went wrong:
>>>> A problem occurred evaluating script.
>>>>>
>>>>>
>>>>> Could not set unknown property 'overview' for task ':groovydoc' of type
>>>>> org.gradle.api.tasks.javadoc.Groovydoc.
>>>>
>>>>
>>>>
>>>> * Try:
>>>> Run with --stacktrace option to get the stack trace. Run with --info or
>>>> --debug option to get more log output.
>>>>
>>>> BUILD FAILED
>>>
>>>
>>>
>>> bye Jochen
>>>
>

Re: [VOTE] Release Groovy 2.4.8

Posted by Jochen Theodorou <bl...@gmx.org>.
Is it maybe because Groovy 2.4.8 is supposed to use Gradle 2.3 and that 
this build then does not work with Gradle 3.2.1, the version master is 
using?

Just tested, and yes, this seems to be the cause. This means you cannot 
create the wrapper using Gradle 3.2.1 because the build file is not 
compatible.

Besides that... where do we define the gradle version to be used for the 
build? If not any gradle version will work we need to specify that in 
the build instructions for the source distribution at least.

bye Jochen

On 31.12.2016 03:25, Paul King wrote:
> The README gives bootstrap instructions for building from source. In
> particular, you should not copy gradlew from another groovy install.
> Instead you can just run any gradle and that will effectively do a
> "gradle wrapper" which will get the correct gradle version. Let me
> know if that works.
>
> Cheers, Paul.
>
> On Sat, Dec 31, 2016 at 11:16 AM, Jochen Theodorou <bl...@gmx.org> wrote:
>> On 30.12.2016 22:13, Paul King wrote:
>>>
>>> Can you give some more info? I can't replicate.
>>
>>
>> I copied the 3.2.1 wrapper over and then tried to start... this is what I
>> got.
>> Just tried again using another 3.2.1 wrapper and this time I got
>>
>>> FAILURE: Build failed with an exception.
>>>
>>> * Where:
>>> Script '/tmp/r/groovy-2.4.8/gradle/docs.gradle' line: 63
>>>
>>> * What went wrong:
>>> A problem occurred evaluating script.
>>>>
>>>> Could not set unknown property 'overview' for task ':groovydoc' of type
>>>> org.gradle.api.tasks.javadoc.Groovydoc.
>>>
>>>
>>> * Try:
>>> Run with --stacktrace option to get the stack trace. Run with --info or
>>> --debug option to get more log output.
>>>
>>> BUILD FAILED
>>
>>
>> bye Jochen
>>


Re: [VOTE] Release Groovy 2.4.8

Posted by Jochen Theodorou <bl...@gmx.org>.
On 31.12.2016 03:25, Paul King wrote:
> The README gives bootstrap instructions for building from source. In
> particular, you should not copy gradlew from another groovy install.
> Instead you can just run any gradle and that will effectively do a
> "gradle wrapper" which will get the correct gradle version. Let me
> know if that works.

that is what I did in my second try. The wrapper task cannot be executed 
because of

> Could not set unknown property 'overview' for task ':groovydoc' of type org.gradle.api.tasks.javadoc.Groovydoc.

bye Jochen

Re: [VOTE] Release Groovy 2.4.8

Posted by Paul King <pa...@asert.com.au>.
The README gives bootstrap instructions for building from source. In
particular, you should not copy gradlew from another groovy install.
Instead you can just run any gradle and that will effectively do a
"gradle wrapper" which will get the correct gradle version. Let me
know if that works.

Cheers, Paul.

On Sat, Dec 31, 2016 at 11:16 AM, Jochen Theodorou <bl...@gmx.org> wrote:
> On 30.12.2016 22:13, Paul King wrote:
>>
>> Can you give some more info? I can't replicate.
>
>
> I copied the 3.2.1 wrapper over and then tried to start... this is what I
> got.
> Just tried again using another 3.2.1 wrapper and this time I got
>
>> FAILURE: Build failed with an exception.
>>
>> * Where:
>> Script '/tmp/r/groovy-2.4.8/gradle/docs.gradle' line: 63
>>
>> * What went wrong:
>> A problem occurred evaluating script.
>>>
>>> Could not set unknown property 'overview' for task ':groovydoc' of type
>>> org.gradle.api.tasks.javadoc.Groovydoc.
>>
>>
>> * Try:
>> Run with --stacktrace option to get the stack trace. Run with --info or
>> --debug option to get more log output.
>>
>> BUILD FAILED
>
>
> bye Jochen
>

Re: [VOTE] Release Groovy 2.4.8

Posted by Jochen Theodorou <bl...@gmx.org>.
On 30.12.2016 22:13, Paul King wrote:
> Can you give some more info? I can't replicate.

I copied the 3.2.1 wrapper over and then tried to start... this is what 
I got.
Just tried again using another 3.2.1 wrapper and this time I got

> FAILURE: Build failed with an exception.
>
> * Where:
> Script '/tmp/r/groovy-2.4.8/gradle/docs.gradle' line: 63
>
> * What went wrong:
> A problem occurred evaluating script.
>> Could not set unknown property 'overview' for task ':groovydoc' of type org.gradle.api.tasks.javadoc.Groovydoc.
>
> * Try:
> Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
>
> BUILD FAILED

bye Jochen


Re: [VOTE] Release Groovy 2.4.8

Posted by Paul King <pa...@asert.com.au>.
Can you give some more info? I can't replicate.

Cheers, Paul.

On Sat, Dec 31, 2016 at 4:46 AM, Jochen Theodorou <bl...@gmx.org> wrote:
> On 30.12.2016 07:25, Paul King wrote:
>>
>> Dear community,
>>
>> I am happy to start the VOTE thread for a Groovy 2.4.8 release!
>>
>> This release includes 82 bug fixes/improvements as outlined in the
>> changelog:
>>
>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12318123&version=12335950
>>
>> Tag:
>> https://git1-us-west.apache.org/repos/asf?p=groovy.git;a=tag;h=refs/tags/GROOVY_2_4_8
>> Tag commit id: 0911b621d2b9eb9de1edc4743dc12ee0b201db5f
>>
>> The artifacts to be voted on are located as follows.
>> Source release:
>> https://dist.apache.org/repos/dist/dev/groovy/2.4.8/sources
>
>
> I get this:
>
>> blackdrag@Gr8:/tmp/r/groovy-2.4.8$ ./gradlew
>> :buildSrc:compileJava UP-TO-DATE
>> :buildSrc:compileGroovy UP-TO-DATE
>> :buildSrc:processResources UP-TO-DATE
>> :buildSrc:classes UP-TO-DATE
>> :buildSrc:jar UP-TO-DATE
>> :buildSrc:assemble UP-TO-DATE
>> :buildSrc:compileTestJava UP-TO-DATE
>> :buildSrc:compileTestGroovy UP-TO-DATE
>> :buildSrc:processTestResources UP-TO-DATE
>> :buildSrc:testClasses UP-TO-DATE
>> :buildSrc:test UP-TO-DATE
>> :buildSrc:check UP-TO-DATE
>> :buildSrc:build UP-TO-DATE
>> Bintray user: null
>>
>> FAILURE: Build failed with an exception.
>>
>> * Where:
>> Script '/tmp/r/groovy-2.4.8/gradle/bintray.gradle' line: 38
>>
>> * What went wrong:
>> A problem occurred evaluating script.
>>>
>>> Plugin with id 'com.jfrog.artifactory-upload' not found.
>>
>>
>> * Try:
>> Run with --stacktrace option to get the stack trace. Run with --info or
>> --debug option to get more log output.
>>
>> BUILD FAILED
>>
>> Total time: 0.517 secs
>
>
> bye Jochen
>

Re: [VOTE] Release Groovy 2.4.8

Posted by Jochen Theodorou <bl...@gmx.org>.
On 30.12.2016 07:25, Paul King wrote:
> Dear community,
>
> I am happy to start the VOTE thread for a Groovy 2.4.8 release!
>
> This release includes 82 bug fixes/improvements as outlined in the changelog:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12318123&version=12335950
>
> Tag: https://git1-us-west.apache.org/repos/asf?p=groovy.git;a=tag;h=refs/tags/GROOVY_2_4_8
> Tag commit id: 0911b621d2b9eb9de1edc4743dc12ee0b201db5f
>
> The artifacts to be voted on are located as follows.
> Source release: https://dist.apache.org/repos/dist/dev/groovy/2.4.8/sources

I get this:

> blackdrag@Gr8:/tmp/r/groovy-2.4.8$ ./gradlew
> :buildSrc:compileJava UP-TO-DATE
> :buildSrc:compileGroovy UP-TO-DATE
> :buildSrc:processResources UP-TO-DATE
> :buildSrc:classes UP-TO-DATE
> :buildSrc:jar UP-TO-DATE
> :buildSrc:assemble UP-TO-DATE
> :buildSrc:compileTestJava UP-TO-DATE
> :buildSrc:compileTestGroovy UP-TO-DATE
> :buildSrc:processTestResources UP-TO-DATE
> :buildSrc:testClasses UP-TO-DATE
> :buildSrc:test UP-TO-DATE
> :buildSrc:check UP-TO-DATE
> :buildSrc:build UP-TO-DATE
> Bintray user: null
>
> FAILURE: Build failed with an exception.
>
> * Where:
> Script '/tmp/r/groovy-2.4.8/gradle/bintray.gradle' line: 38
>
> * What went wrong:
> A problem occurred evaluating script.
>> Plugin with id 'com.jfrog.artifactory-upload' not found.
>
> * Try:
> Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
>
> BUILD FAILED
>
> Total time: 0.517 secs

bye Jochen


Re: [VOTE] Release Groovy 2.4.8

Posted by Pascal Schumacher <pa...@gmx.net>.
Hello Paul,

thanks a lot for volunteering as a release manager. :)

Sadly the javadoc of StringGroovyMethods#uncapitalize contains an error 
so, the unit tests fail with:

MainJavadocAssertionTest > 
StringGroovyMethodsJavadocAssertionTest.testAssertionFromStringGroovyMethodsLine213 
FAILED

Assertion failed:

assert 'Hello World' == 'hello world'.split(' ').collect{ 
it.uncapitalize() }.join(' ')

| | | |

false | [hello, world] hello world

[hello, world]


Am 30.12.2016 um 07:25 schrieb Paul King:
> Dear community,
>
> I am happy to start the VOTE thread for a Groovy 2.4.8 release!
>
> This release includes 82 bug fixes/improvements as outlined in the changelog:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12318123&version=12335950
>
> Tag: https://git1-us-west.apache.org/repos/asf?p=groovy.git;a=tag;h=refs/tags/GROOVY_2_4_8
> Tag commit id: 0911b621d2b9eb9de1edc4743dc12ee0b201db5f
>
> The artifacts to be voted on are located as follows.
> Source release: https://dist.apache.org/repos/dist/dev/groovy/2.4.8/sources
> Convenience binaries:
> https://dist.apache.org/repos/dist/dev/groovy/2.4.8/distribution
> SVN version id: 17618
>
> Release artifacts are signed with the following key:
> https://dist.apache.org/repos/dist/dev/groovy/KEYS
>
> Please vote on releasing this package as Apache Groovy 2.4.8.
>
> Officially, the vote is open for the next 72 hours and passes if a
> majority of at least three +1 PMC votes are cast. Given the time of
> year, I'll wait an extra day before sending a vote summary.
>
> [ ] +1 Release Apache Groovy 2.4.8
> [ ]  0 I don't have a strong opinion about this, but I assume it's ok
> [ ] -1 Do not release Apache Groovy 2.4.8 because...
>
> Here is my vote:
>
> +1 (binding)



Re: [VOTE] Release Groovy 2.4.8

Posted by Russel Winder <ru...@winder.org.uk>.
Cédric,

Current best hypothesis is that Gradle is working for me as long as
there is no buildSrc directory.

On Fri, 2016-12-30 at 12:37 +0100, Cédric Champeau wrote:
> It works fine locally. Is your local dir writable? No full disk?
> Could you
> try to delete ~/.gradle/caches/3.2.1 ?
> 
> 
> 2016-12-30 12:34 GMT+01:00 Russel Winder <ru...@winder.org.uk>:
> 
> > It seems the Gradle 3.2.1 that gets downloaded is unable to build
> > Groovy on Debian Sid:
> > 
> > 
> > > > ./gradlew clean
> > 
> > Downloading https://services.gradle.org/distributions/gradle-3.2.1-
> > bin.zip
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > ............................................................
> > .....................................
> > Unzipping /home/users/russel/.gradle/wrapper/dists/gradle-3.2.1-
> > bin/erlz51pt56t1o6vc7t39cikug/gradle-3.2.1-bin.zip to
> > /home/users/russel/.gradle/wrapper/dists/gradle-3.2.1-
> > bin/erlz51pt56t1o6vc7t39cikug
> > Set executable permissions for: /home/users/russel/.gradle/
> > wrapper/dists/gradle-3.2.1-bin/erlz51pt56t1o6vc7t39cikug/
> > gradle-3.2.1/bin/gradle
> > 
> > FAILURE: Build failed with an exception.
> > 
> > * What went wrong:
> > Could not load compiled classes for script
> > 'jar:file:/home/users/russel/.
> > gradle/wrapper/dists/gradle-3.2.1-bin/erlz51pt56t1o6vc7t39cikug/
> > gradle-3.2.1/lib/gradle-core-3.2.1.jar!/org/gradle/
> > initialization/buildsrc/defaultBuildSourceScript.txt' from cache.
> > Expected class file /home/users/russel/.gradle/
> > caches/3.2.1/scripts-remapped/defaultBuildSourceScript_
> > c6w8a8mtuolqv12rk5ak65x14/dpojvmxa9epgfas2q7cd95rno/
> > dsl1c0099b63a3e82c6bf169f629bb20cd4/classes/defaultBuildSourceScrip
> > t_
> > c6w8a8mtuolqv12rk5ak65x14.class does not exist.
> > > defaultBuildSourceScript_c6w8a8mtuolqv12rk5ak65x14
> > 
> > * Try:
> > Run with --stacktrace option to get the stack trace. Run with --
> > info or
> > --debug option to get more log output.
> > 
> > BUILD FAILED
> > 
> > Total time: 45.759 secs
> > 
> > 
> > 
> > --
> > Russel.
> > ============================================================
> > =================
> > Dr Russel Winder      t: +44 20 7585 2200   voip:
> > sip:russel.winder@ekiga.net
> > 41 Buckmaster Road    m: +44 7770 465 077   xmpp: russel@winder.org
> > .uk
> > London SW11 1EN, UK   w: www.russel.org.uk  skype: russel_winder
-- 
Russel.
=============================================================================
Dr Russel Winder      t: +44 20 7585 2200   voip: sip:russel.winder@ekiga.net
41 Buckmaster Road    m: +44 7770 465 077   xmpp: russel@winder.org.uk
London SW11 1EN, UK   w: www.russel.org.uk  skype: russel_winder

Re: [VOTE] Release Groovy 2.4.8

Posted by Russel Winder <ru...@winder.org.uk>.
On Fri, 2016-12-30 at 12:37 +0100, Cédric Champeau wrote:
> It works fine locally. Is your local dir writable? No full disk?
> Could you
> try to delete ~/.gradle/caches/3.2.1 ?

Good to hear it works somewhere. :-)

Tried removing that cache directory, no change. :-(

 
-- 
Russel.
=============================================================================
Dr Russel Winder      t: +44 20 7585 2200   voip: sip:russel.winder@ekiga.net
41 Buckmaster Road    m: +44 7770 465 077   xmpp: russel@winder.org.uk
London SW11 1EN, UK   w: www.russel.org.uk  skype: russel_winder

Re: [VOTE] Release Groovy 2.4.8

Posted by Russel Winder <ru...@winder.org.uk>.
On Fri, 2016-12-30 at 12:37 +0100, Cédric Champeau wrote:
> It works fine locally. Is your local dir writable? No full disk?
> Could you
> try to delete ~/.gradle/caches/3.2.1 ?

What is really worrying is that I get the problem using the SDKMAN!
gradle installation as well as the gradlew command which surely has to
be wrong, an installed gradle command should not even know about the
Gradle Wrapper.

-- 
Russel.
=============================================================================
Dr Russel Winder      t: +44 20 7585 2200   voip: sip:russel.winder@ekiga.net
41 Buckmaster Road    m: +44 7770 465 077   xmpp: russel@winder.org.uk
London SW11 1EN, UK   w: www.russel.org.uk  skype: russel_winder

Re: [VOTE] Release Groovy 2.4.8

Posted by Cédric Champeau <ce...@gmail.com>.
It works fine locally. Is your local dir writable? No full disk? Could you
try to delete ~/.gradle/caches/3.2.1 ?


2016-12-30 12:34 GMT+01:00 Russel Winder <ru...@winder.org.uk>:

> It seems the Gradle 3.2.1 that gets downloaded is unable to build
> Groovy on Debian Sid:
>
>
> |> ./gradlew clean
> Downloading https://services.gradle.org/distributions/gradle-3.2.1-bin.zip
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> ............................................................
> .....................................
> Unzipping /home/users/russel/.gradle/wrapper/dists/gradle-3.2.1-
> bin/erlz51pt56t1o6vc7t39cikug/gradle-3.2.1-bin.zip to
> /home/users/russel/.gradle/wrapper/dists/gradle-3.2.1-
> bin/erlz51pt56t1o6vc7t39cikug
> Set executable permissions for: /home/users/russel/.gradle/
> wrapper/dists/gradle-3.2.1-bin/erlz51pt56t1o6vc7t39cikug/
> gradle-3.2.1/bin/gradle
>
> FAILURE: Build failed with an exception.
>
> * What went wrong:
> Could not load compiled classes for script 'jar:file:/home/users/russel/.
> gradle/wrapper/dists/gradle-3.2.1-bin/erlz51pt56t1o6vc7t39cikug/
> gradle-3.2.1/lib/gradle-core-3.2.1.jar!/org/gradle/
> initialization/buildsrc/defaultBuildSourceScript.txt' from cache.
> Expected class file /home/users/russel/.gradle/
> caches/3.2.1/scripts-remapped/defaultBuildSourceScript_
> c6w8a8mtuolqv12rk5ak65x14/dpojvmxa9epgfas2q7cd95rno/
> dsl1c0099b63a3e82c6bf169f629bb20cd4/classes/defaultBuildSourceScript_
> c6w8a8mtuolqv12rk5ak65x14.class does not exist.
> > defaultBuildSourceScript_c6w8a8mtuolqv12rk5ak65x14
>
> * Try:
> Run with --stacktrace option to get the stack trace. Run with --info or
> --debug option to get more log output.
>
> BUILD FAILED
>
> Total time: 45.759 secs
>
>
>
> --
> Russel.
> ============================================================
> =================
> Dr Russel Winder      t: +44 20 7585 2200   voip:
> sip:russel.winder@ekiga.net
> 41 Buckmaster Road    m: +44 7770 465 077   xmpp: russel@winder.org.uk
> London SW11 1EN, UK   w: www.russel.org.uk  skype: russel_winder

Re: [VOTE] Release Groovy 2.4.8

Posted by Russel Winder <ru...@winder.org.uk>.
It seems the Gradle 3.2.1 that gets downloaded is unable to build
Groovy on Debian Sid:


|> ./gradlew clean
Downloading https://services.gradle.org/distributions/gradle-3.2.1-bin.zip
.................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
Unzipping /home/users/russel/.gradle/wrapper/dists/gradle-3.2.1-bin/erlz51pt56t1o6vc7t39cikug/gradle-3.2.1-bin.zip to /home/users/russel/.gradle/wrapper/dists/gradle-3.2.1-bin/erlz51pt56t1o6vc7t39cikug
Set executable permissions for: /home/users/russel/.gradle/wrapper/dists/gradle-3.2.1-bin/erlz51pt56t1o6vc7t39cikug/gradle-3.2.1/bin/gradle

FAILURE: Build failed with an exception.

* What went wrong:
Could not load compiled classes for script 'jar:file:/home/users/russel/.gradle/wrapper/dists/gradle-3.2.1-bin/erlz51pt56t1o6vc7t39cikug/gradle-3.2.1/lib/gradle-core-3.2.1.jar!/org/gradle/initialization/buildsrc/defaultBuildSourceScript.txt' from cache. Expected class file /home/users/russel/.gradle/caches/3.2.1/scripts-remapped/defaultBuildSourceScript_c6w8a8mtuolqv12rk5ak65x14/dpojvmxa9epgfas2q7cd95rno/dsl1c0099b63a3e82c6bf169f629bb20cd4/classes/defaultBuildSourceScript_c6w8a8mtuolqv12rk5ak65x14.class does not exist.
> defaultBuildSourceScript_c6w8a8mtuolqv12rk5ak65x14

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 45.759 secs



-- 
Russel.
=============================================================================
Dr Russel Winder      t: +44 20 7585 2200   voip: sip:russel.winder@ekiga.net
41 Buckmaster Road    m: +44 7770 465 077   xmpp: russel@winder.org.uk
London SW11 1EN, UK   w: www.russel.org.uk  skype: russel_winder