diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-02-05 09:20:54 +0100 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-02-05 09:20:54 +0100 |
commit | 87c9269152f8c631123525b796cf07dc0cca7398 (patch) | |
tree | 041c36a99e746df8a802375a5f71b0f7081f6e51 /pdf-as-legacy | |
parent | 3f78cac3c1c5255b315a60c98cfb6853f1faa2fc (diff) | |
download | pdf-as-4-87c9269152f8c631123525b796cf07dc0cca7398.tar.gz pdf-as-4-87c9269152f8c631123525b796cf07dc0cca7398.tar.bz2 pdf-as-4-87c9269152f8c631123525b796cf07dc0cca7398.zip |
Documentation + Documentation building
Diffstat (limited to 'pdf-as-legacy')
-rw-r--r-- | pdf-as-legacy/build.gradle | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/pdf-as-legacy/build.gradle b/pdf-as-legacy/build.gradle index 2f40386f..ae33b3f4 100644 --- a/pdf-as-legacy/build.gradle +++ b/pdf-as-legacy/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'eclipse' jar { manifest { - attributes 'Implementation-Title': 'PDF-AS-4 Library', 'Implementation-Version': version + attributes 'Implementation-Title': 'PDF-AS-4 Legacy Library' } } @@ -23,6 +23,21 @@ dependencies { testCompile group: 'junit', name: 'junit', version: '4.+' } +/*javadoc { + appName = 'PDF-AS-4 Legacy Library' + exclude = '/**' + include = 'at/gv/egiz/pdfas/**' + project.configure(options) { + memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED + charSet = "ISO-8859-1" + docTitle = "$appName" + windowTitle = "$appName" + header = "<b>$appName</b>" + use = "true" + links("http://java.sun.com/j2ee/1.4/docs/api", "http://java.sun.com/j2se/1.5.0/docs/api") + } +}*/ + test { systemProperties 'property': 'value' } uploadArchives { |