diff options
Diffstat (limited to 'pdf-as-legacy/build.gradle')
-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 { |