Hello gradle users,

i am new to gradle and i am trying to assemble a simple jar file with groovy in 
a grails project. The jar file should contain only some enums from a certain 
package.

My build.gradle looks like this.

apply plugin:'groovy'

jar {
    includes ['my/certain/package/**']
}

When i execute "gradle build" at the command line gradle states "BUILD SUCCESS" 
but where can i find the assembled jar? How can i determine the destination 
folder? 

I tried:

apply plugin:'groovy'

jar {
    includes ['my/certain/package/**']
    destinationDir file('lib')
}

but then the build fails with "Could not find method destinationDir() ...."

Perhaps someone could help me with that.

Kind regards,
Sebastian

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

    http://xircles.codehaus.org/manage_email


Reply via email to