Patrik Schalin wrote:
Hi all,

Trying to wrap my head around Groovy and Gradle but I am missing API
documentation...(I think)

Consider the following build.gradle on 0.7;

import org.gradle.util.GradleUtil

clean {
    GradleUtild.deleteDir(buildDir)
}

which works just fine.

However, I'm not able to find the API doc for GradleUtil...is it missing or
am I missing something?



Some of Gradle is implemented in Groovy. GradleUtil is one such class. These classes don't appear in the javadoc, but they do appear in the groovydoc at http://gradle.org/0.7/docs/groovydoc/

Unfortunately, a lot of our groovy classes also don't have any groovydoc comments.

For the Gradle 0.8 or 0.9 release, we want to move all the API classes across to Java (and added javadoc comments), so that the javadoc API reference is complete.


Adam


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

   http://xircles.codehaus.org/manage_email


Reply via email to