diff options
Diffstat (limited to 'pdf-as-lib')
| -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 | 
