Hello gradle.

In my spare time I try to move my eclipse rcp releng project from pde- build to gradle.

I use the following lines of gradle script to package my whole application including third party eclipse bundles:

        dependencies {
addFlatDirResolver('lib', target_plugins).addArtifactPattern(target_plugins+'/ [artifact]_[revision].[ext]')
                compile rcp_bundles
        }

        dists {
                zip() {
                        files(dependencies.resolve("runtime")) // add 
dependencies to zip             
                }
        }


but this produces the following error message:
        
Build file '/Users/Rene/workspaces/sandbox/gradle/ com.breskeby.samples.gradlercp.rcp/build.gradle' line(s): 38, 37, 36

        A problem occurred evaluating project :.
        Cause: [Ljava.util.ArrayList;

The line which causes this error is:
        file(dependencies.resolve("runtime"))

anybody an idea?

rgds,
René Groeschke
---------------------------------------------------------------------
To unsubscribe from this list, please visit:

   http://xircles.codehaus.org/manage_email


Reply via email to