diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-02-05 10:19:00 +0100 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-02-05 10:19:00 +0100 |
commit | fe8409ea3ebbb34058eeb5c2f0a6977b8a421686 (patch) | |
tree | 7909d6331bffe7e1e189c390452b56b51cafe1fd /pdf-as-lib/build.gradle | |
parent | c3a1de38b5d9ca940ed7b172a6f987834647e6cf (diff) | |
download | pdf-as-4-fe8409ea3ebbb34058eeb5c2f0a6977b8a421686.tar.gz pdf-as-4-fe8409ea3ebbb34058eeb5c2f0a6977b8a421686.tar.bz2 pdf-as-4-fe8409ea3ebbb34058eeb5c2f0a6977b8a421686.zip |
Added API Documentation and Full Documentation
Diffstat (limited to 'pdf-as-lib/build.gradle')
-rw-r--r-- | pdf-as-lib/build.gradle | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/pdf-as-lib/build.gradle b/pdf-as-lib/build.gradle index 788c6361..43e31242 100644 --- a/pdf-as-lib/build.gradle +++ b/pdf-as-lib/build.gradle @@ -80,7 +80,7 @@ task apidocs(type: Javadoc) { classpath = configurations.compile source = sourceSets.main.allJava project.configure(options) { - destinationDir = new File(projectDir, '../docs') + destinationDir = new File(projectDir, '../docs/api') memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED charSet = "ISO-8859-1" docTitle = "PDF-AS " + pdfasversion + " Documentation" @@ -93,6 +93,23 @@ task apidocs(type: Javadoc) { } } +task fulldocs(type: Javadoc) { + classpath = configurations.compile + source = sourceSets.main.allJava + project.configure(options) { + destinationDir = new File(projectDir, '../docs/full') + memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED + charSet = "ISO-8859-1" + docTitle = "PDF-AS " + pdfasversion + " Documentation" + version = pdfasversion + include = include('at/gv/egiz/**') + windowTitle = "PDF-AS " + pdfasversion + " Library" + header = "<b>PDF-AS " + pdfasversion + " Library " + pdfasversion + " [" + revision + "]</b>" + use = "true" + links("http://java.sun.com/j2ee/1.4/docs/api", "http://java.sun.com/j2se/1.5.0/docs/api") + } +} + /*task apidocspdf(type: Javadoc) { classpath = configurations.compile source = sourceSets.main.allJava |