From 152d2f6dd78f804d60ffad2390f9231a597bc26f Mon Sep 17 00:00:00 2001 From: Andreas Fitzek Date: Mon, 13 Oct 2014 11:25:03 +0200 Subject: Documentation changes --- doc/PDFAS4_Dokumentation.docx | Bin 134653 -> 134799 bytes doc/PDFAS4_Dokumentation.pdf | Bin 118975 -> 119449 bytes doc/PDFAS4_WebDokumentation.docx | Bin 180801 -> 180943 bytes doc/PDFAS4_WebDokumentation.pdf | Bin 112205 -> 113661 bytes pdf-as-lib/build.gradle | 16 ++++++---------- pdf-as-web-db/build.gradle | 9 ++++++++- 6 files changed, 14 insertions(+), 11 deletions(-) diff --git a/doc/PDFAS4_Dokumentation.docx b/doc/PDFAS4_Dokumentation.docx index fd2f8009..d5162254 100644 Binary files a/doc/PDFAS4_Dokumentation.docx and b/doc/PDFAS4_Dokumentation.docx differ diff --git a/doc/PDFAS4_Dokumentation.pdf b/doc/PDFAS4_Dokumentation.pdf index 8fb52a31..776f6c1a 100755 Binary files a/doc/PDFAS4_Dokumentation.pdf and b/doc/PDFAS4_Dokumentation.pdf differ diff --git a/doc/PDFAS4_WebDokumentation.docx b/doc/PDFAS4_WebDokumentation.docx index e561e894..4169be58 100644 Binary files a/doc/PDFAS4_WebDokumentation.docx and b/doc/PDFAS4_WebDokumentation.docx differ diff --git a/doc/PDFAS4_WebDokumentation.pdf b/doc/PDFAS4_WebDokumentation.pdf index 6fa8986e..64123ea1 100755 Binary files a/doc/PDFAS4_WebDokumentation.pdf and b/doc/PDFAS4_WebDokumentation.pdf differ diff --git a/pdf-as-lib/build.gradle b/pdf-as-lib/build.gradle index 1bbd4d0d..f0439e98 100644 --- a/pdf-as-lib/build.gradle +++ b/pdf-as-lib/build.gradle @@ -106,9 +106,15 @@ task releaseConfig(type: Copy) { task releases(type: Copy) { from jar.outputs + from distZip.outputs + from distTar.outputs into rootDir.toString() + "/releases/" + version } +releases.dependsOn jar +releases.dependsOn distZip +releases.dependsOn distTar + releases.dependsOn releaseConfig task apidocs(type: Javadoc) { @@ -153,13 +159,3 @@ test { systemProperties 'property': 'value' } -distributions { - main { - contents { - from { '../docs' } - from('../doc/') { - include '*.pdf' - } - } - } -} diff --git a/pdf-as-web-db/build.gradle b/pdf-as-web-db/build.gradle index c29fff66..51897928 100644 --- a/pdf-as-web-db/build.gradle +++ b/pdf-as-web-db/build.gradle @@ -1,5 +1,6 @@ apply plugin: 'java' apply plugin: 'eclipse' +apply plugin: 'java-library-distribution' jar { manifest { @@ -23,5 +24,11 @@ dependencies { task releases(type: Copy) { from jar.outputs + from distZip.outputs + from distTar.outputs into rootDir.toString() + "/releases/" + version -} \ No newline at end of file +} + +releases.dependsOn jar +releases.dependsOn distZip +releases.dependsOn distTar -- cgit v1.2.3