Hi,

I have a multi project web app project.
One of my projects is a war project where I defined a deploy task:

task deploy(dependsOn : 'war') {
  copy {
    from 'build/libs'
    into 'C:/programs/resin-4.0.14/webapps'
    include '*.war'
  }
}

When I run this deploy task I would expect that the war task would be
executed before my deploy task copy the war file
but this isn't the case. The war file is first copied before its build
with my latest changes.
Is there a way to fix this? I now execute the deploy task twice after
I make changes.

Evert

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

    http://xircles.codehaus.org/manage_email


Reply via email to