Hi,
I forgot to mention that the following example

> > dists {
> >    zipRoot = "${name}-${version}"
> >    zip() {
> >        zipFileSet(dir: buildDir) {
> >            include('*.jar')
> >            prefix: "${zipRoot}"
> >        }
> >    }
> > }

Should be:

        dists {
            zip().doFirst {Task task -> 
          zipRoot = "${name}-${version}"
                task.configure {
                    // Main jar-File
                    zipFileSet(dir: buildDir, prefix: "${zipRoot}") {
                        include('*.jar')
                    }
            }
        }

probably because some API's have changed.

Kind Regards
Matthias

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

    http://xircles.codehaus.org/manage_email


Reply via email to