I'm having the same problem as here:

http://gradle.1045684.n5.nabble.com/taskdef-for-jasperreport-td2409699.html

I'm trying to compile some jasper reports in a sub project.

When I define the ant task, gradle says it can't find the jasper ant
task.   If I follow the instructions in the link above and copy the
jasper jar file and the commons digester into $GRADLE_HOME/lib, then I
get further, though once it tries compiling the jasper reports, it fails
because it can't find other jasper classes when the jasper compiler
tries to compile some of the java classes the the jasper ant task
generates.

I have tried this:

buildscript
{
    repositories
    {
        mavenCentral()

        def dirs = getVendorLibDirList()

        flatDir dirs: dirs
    }

    dependencies
    {
        classpath   group: 'commons-digester',              name:
'commons-digester',       version: '1.7'
        classpath   group: 'jasperreports',                 name:
'jasperreports',          version: '3.5.2'
        classpath                                           name:
'nrg-build-groovy',       version: version
    }
}


but it doesn't work.

Thanks for any help you can give.


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

    http://xircles.codehaus.org/manage_email


Reply via email to