aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2014-10-13 11:25:03 +0200
committerAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2014-10-13 11:25:03 +0200
commit152d2f6dd78f804d60ffad2390f9231a597bc26f (patch)
treec19397c36e62fa2c6f98e2b80a36bb1e9f6d28db
parent0421762ff4091af307d7d6cfefdfd999b10a7e8a (diff)
downloadpdf-as-4-152d2f6dd78f804d60ffad2390f9231a597bc26f.tar.gz
pdf-as-4-152d2f6dd78f804d60ffad2390f9231a597bc26f.tar.bz2
pdf-as-4-152d2f6dd78f804d60ffad2390f9231a597bc26f.zip
Documentation changes
-rw-r--r--doc/PDFAS4_Dokumentation.docxbin134653 -> 134799 bytes
-rwxr-xr-xdoc/PDFAS4_Dokumentation.pdfbin118975 -> 119449 bytes
-rw-r--r--doc/PDFAS4_WebDokumentation.docxbin180801 -> 180943 bytes
-rwxr-xr-xdoc/PDFAS4_WebDokumentation.pdfbin112205 -> 113661 bytes
-rw-r--r--pdf-as-lib/build.gradle16
-rw-r--r--pdf-as-web-db/build.gradle9
6 files changed, 14 insertions, 11 deletions
diff --git a/doc/PDFAS4_Dokumentation.docx b/doc/PDFAS4_Dokumentation.docx
index fd2f8009..d5162254 100644
--- a/doc/PDFAS4_Dokumentation.docx
+++ b/doc/PDFAS4_Dokumentation.docx
Binary files differ
diff --git a/doc/PDFAS4_Dokumentation.pdf b/doc/PDFAS4_Dokumentation.pdf
index 8fb52a31..776f6c1a 100755
--- a/doc/PDFAS4_Dokumentation.pdf
+++ b/doc/PDFAS4_Dokumentation.pdf
Binary files differ
diff --git a/doc/PDFAS4_WebDokumentation.docx b/doc/PDFAS4_WebDokumentation.docx
index e561e894..4169be58 100644
--- a/doc/PDFAS4_WebDokumentation.docx
+++ b/doc/PDFAS4_WebDokumentation.docx
Binary files differ
diff --git a/doc/PDFAS4_WebDokumentation.pdf b/doc/PDFAS4_WebDokumentation.pdf
index 6fa8986e..64123ea1 100755
--- a/doc/PDFAS4_WebDokumentation.pdf
+++ b/doc/PDFAS4_WebDokumentation.pdf
Binary files 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