« Return to Thread: unmanagedClasspath

Re: unmanagedClasspath

by Adam Murdoch-2 :: Rate this Message:

Reply to Author | View in Thread



Steve Appling wrote:

> I am still having some problems related (I think) to the
> unmanagedClasspath changes.  I can't get our buildSrc to work now.
> Previously we had to do the following in the buildSrc/build.gradle:
>   compile.groovyClasspath = org.gradle.util.BootstrapUtil.groovyFiles
>   testCompile.groovyClasspath = org.gradle.util.BootstrapUtil.groovyFiles
>  
> compile.unmanagedClasspath(org.gradle.util.BootstrapUtil.gradleClasspath
> as File[])
>
> I have tried several combinations to get this working, but still can't
> get the gradle files on the classpath in buildsrc.  I get errors like
> "unable to resolve class org.gradle.api.Project".
>
> I am currently just trying to add the gradle files to the compile
> classpath using:
> dependencies {
>    compile files(org.gradle.util.BootstrapUtil.gradleClasspath)
> }
>
> This still doesn't work - I would appreciate any other ideas to try.  
> Perhaps this will make more sense on Monday :)
>
>

This is from the default buildSrc build script, which should work for you:

dependencies {
    compile files(org.gradle.util.BootstrapUtil.gradleClasspath)
    groovy files(org.gradle.util.BootstrapUtil.groovyFiles)
}


It looks very similar to what you are trying, so I'm not confident. If
you are still getting failures, can you try again with the -s flag, so
we can see where the failure is?


Adam


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


 « Return to Thread: unmanagedClasspath