diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-10-13 11:25:03 +0200 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-10-13 11:25:03 +0200 |
commit | 152d2f6dd78f804d60ffad2390f9231a597bc26f (patch) | |
tree | c19397c36e62fa2c6f98e2b80a36bb1e9f6d28db | |
parent | 0421762ff4091af307d7d6cfefdfd999b10a7e8a (diff) | |
download | pdf-as-4-152d2f6dd78f804d60ffad2390f9231a597bc26f.tar.gz pdf-as-4-152d2f6dd78f804d60ffad2390f9231a597bc26f.tar.bz2 pdf-as-4-152d2f6dd78f804d60ffad2390f9231a597bc26f.zip |
Documentation changes
-rw-r--r-- | doc/PDFAS4_Dokumentation.docx | bin | 134653 -> 134799 bytes | |||
-rwxr-xr-x | doc/PDFAS4_Dokumentation.pdf | bin | 118975 -> 119449 bytes | |||
-rw-r--r-- | doc/PDFAS4_WebDokumentation.docx | bin | 180801 -> 180943 bytes | |||
-rwxr-xr-x | doc/PDFAS4_WebDokumentation.pdf | bin | 112205 -> 113661 bytes | |||
-rw-r--r-- | pdf-as-lib/build.gradle | 16 | ||||
-rw-r--r-- | 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 Binary files differindex fd2f8009..d5162254 100644 --- a/doc/PDFAS4_Dokumentation.docx +++ b/doc/PDFAS4_Dokumentation.docx diff --git a/doc/PDFAS4_Dokumentation.pdf b/doc/PDFAS4_Dokumentation.pdf Binary files differindex 8fb52a31..776f6c1a 100755 --- a/doc/PDFAS4_Dokumentation.pdf +++ b/doc/PDFAS4_Dokumentation.pdf diff --git a/doc/PDFAS4_WebDokumentation.docx b/doc/PDFAS4_WebDokumentation.docx Binary files differindex e561e894..4169be58 100644 --- a/doc/PDFAS4_WebDokumentation.docx +++ b/doc/PDFAS4_WebDokumentation.docx diff --git a/doc/PDFAS4_WebDokumentation.pdf b/doc/PDFAS4_WebDokumentation.pdf Binary files differindex 6fa8986e..64123ea1 100755 --- a/doc/PDFAS4_WebDokumentation.pdf +++ b/doc/PDFAS4_WebDokumentation.pdf 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 |