I know there have been quite a few changes to up-to-date since that
preview release, could you try a newer build (a nightly perhaps if
you're not comfortable building gradle) and see if you have the same
results?

On Tue, May 18, 2010 at 08:42, Nacho Coloma <[email protected]> wrote:
> It's also happening with a copy task:
>
> task 'webinflib'(type: Copy) {
>     from configurations.runtime.files
>     into "$webAppDirName/WEB-INF/lib"
> }
>
> # rm -rf src/main/webapp/WEB-INF/lib/
> # gradle webinflib
>
> :webinflib UP-TO-DATE
>
> If I replace the task with:
>
> task 'webinflib' << {
>     copy {
>         from configurations.runtime.files
>         into "$webAppDirName/WEB-INF/lib"
>     }
> }
>
> It works.
>
> On Tue, May 18, 2010 at 2:02 PM, Nacho Coloma <[email protected]> wrote:
>>
>> Hi all,
>>
>> Did something change with the up-to-date feature on 0.9-preview-1? It has
>> started failing in my build process after the gradle upgrade:
>>
>> # rm -rf build
>> # gradle
>> :compileJava UP-TO-DATE <-- ??
>>
>> After execution, no classes folder is found. How is the up-to-date flag
>> being calculated now?
>
>



-- 
Jason Porter

Software Engineer
Open Source Advocate

PGP key id: 926CCFF5
PGP key available at: keyserver.net, pgp.mit.edu

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

    http://xircles.codehaus.org/manage_email


Reply via email to