diff --git a/.github/workflows/test-java-samples.yml b/.github/workflows/test-java-samples.yml index ad737327..6c54ef37 100644 --- a/.github/workflows/test-java-samples.yml +++ b/.github/workflows/test-java-samples.yml @@ -2,8 +2,14 @@ name: test-samples on: pull_request: + branches: + - develop + - main push: - branches: [ develop, main ] + branches: + - develop + - main + env: JAVA_VERSION: '11' @@ -61,7 +67,7 @@ jobs: 'DocumentConversion/ColorConvertDocument/', 'DocumentConversion/ConvertToOffice/', 'DocumentConversion/CreateDocFromXPS/', - 'DocumentConversion/Factur-XConverter/', + 'DocumentConversion/FacturXConverter/', 'DocumentConversion/PDFAConverter/', 'DocumentConversion/PDFXConverter/', 'DocumentConversion/ZUGFeRDConverter/', @@ -105,8 +111,113 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Setup Java uses: actions/setup-java@v4 with: java-version: ${{ env.JAVA_VERSION }} distribution: 'adopt' + + - name: Setup Microsoft Core Fonts + working-directory: ${{ matrix.dir }} + run: | + sample_name=$(basename "$PWD") + if [ "${{ matrix.os }}" == 'ubuntu-latest' ]; then + case "$sample_name" in "AddHeaderFooter" | "AddElements") + echo 'ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true' | sudo debconf-set-selections + sudo apt-get install ttf-mscorefonts-installer + ;; + esac + fi + + - name: Unpack APDFL from Maven Central + working-directory: ${{ matrix.dir }} + run: | + sample_name=$(basename "$PWD") + if { [ "$sample_name" != "ConvertToOffice" ] && [ "$sample_name" != "CreateDocFromXPS" ]; } || [ "${{ matrix.os }}" != 'macos-14' ]; then + mvn -e process-resources + else + echo "Not available on this os" + fi + + - name: Unpack APDFL resources ZIP file + working-directory: ${{ matrix.dir }} + run: | + sample_name=$(basename "$PWD") + if [ "$sample_name" == "DocToImages" ] && [ "$RUNNER_OS" != "macOS" ] ; then + unzip $HOME/.m2/repository/com/datalogics/pdfl/pdfl/**/*-resources.zip + ls -la + fi + + - name: Compile and assemble sample JAR files with dependencies + working-directory: ${{ matrix.dir }} + run: | + sample_name=$(basename "$PWD") + if { [ "$sample_name" != "ConvertToOffice" ] && [ "$sample_name" != "CreateDocFromXPS" ]; } || [ "${{ matrix.os }}" != 'macos-14' ]; then + mvn -e package + else + echo "Not available on this os" + fi + + - name: Set up Windows system PATH + working-directory: ${{ matrix.dir }} + run: | + if [ "$RUNNER_OS" == "Windows" ]; then + echo "${{ github.workspace }}\${{ matrix.dir }}\target\lib" >> $GITHUB_PATH + fi + + - name: Print PATH + run: echo $PATH + + - name: Run samples + working-directory: ${{ matrix.dir }} + run: | + sample_name=$(basename "$PWD") + if [ "$sample_name" == "DisplayPDF" ] || [ "$sample_name" == "ImageDisplay" ] || [ "$sample_name" == "JavaViewer" ] || [ "$sample_name" == "PDFObjectExplorer" ] || [ "$sample_name" == "PrintPDF" ] || [ "$sample_name" == "PrintPDFGUI" ] || [ "$sample_name" == "ImageDisplayByteArray" ]; then + echo "$sample_name will not be run due to GitHub runner limitations." + elif { [ "$sample_name" != "ConvertToOffice" ] && [ "$sample_name" != "CreateDocFromXPS" ]; } || [ "${{matrix.os}}" != 'macos-14' ]; then + if [ "$RUNNER_OS" == "Windows" ]; then + if [ "$sample_name" == "DocToImages" ]; then + java -Djava.library.path="$PATH" -Dfile.encoding=UTF-8 -jar target/$sample_name-1.0-SNAPSHOT-jar-with-dependencies.jar -format=png Sample_Input/ducky.pdf + else + java -Djava.library.path="$PATH" -Dfile.encoding=UTF-8 -jar target/$sample_name-1.0-SNAPSHOT-jar-with-dependencies.jar + fi + elif [ "$RUNNER_OS" == "Linux" ] || [ "$RUNNER_OS" == "macOS" ]; then + if [ "$sample_name" == "DocToImages" ]; then + java -Djava.library.path=./target/lib -Dfile.encoding=UTF-8 -jar target/$sample_name-1.0-SNAPSHOT-jar-with-dependencies.jar -format=png Sample_Input/ducky.pdf + else + java -Djava.library.path=./target/lib -Dfile.encoding=UTF-8 -jar target/$sample_name-1.0-SNAPSHOT-jar-with-dependencies.jar + fi + fi + else + echo "Not available on this os" + fi + + - name: Set sample_name variable + id: set-sample-name + working-directory: ${{matrix.dir}} + run: echo "SAMPLE_NAME=$(basename "$PWD")" >> "$GITHUB_ENV" + + - name: Save artifacts + uses: actions/upload-artifact@v4 + with: + name: output-${{ runner.os }}-${{ env.SAMPLE_NAME }} + path: | + ${{matrix.dir}}*.docx + ${{matrix.dir}}*.xslx + ${{matrix.dir}}*.pptx + ${{matrix.dir}}*.pdf + ${{matrix.dir}}*.tif + ${{matrix.dir}}*.png + ${{matrix.dir}}*.jpg + ${{matrix.dir}}*.eps + ${{matrix.dir}}*.tiff + ${{matrix.dir}}*.bmp + ${{matrix.dir}}*.gif + ${{matrix.dir}}*.json + ${{matrix.dir}}*.txt + ${{matrix.dir}}*.csv + + - name: List files + run: | + ls ${{matrix.dir}} diff --git a/Annotations/Annotations/pom.xml b/Annotations/Annotations/pom.xml index 91e7bc37..85a1acbd 100644 --- a/Annotations/Annotations/pom.xml +++ b/Annotations/Annotations/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.Annotations + + + + jar-with-dependencies + + + diff --git a/Annotations/InkAnnotations/pom.xml b/Annotations/InkAnnotations/pom.xml index dbd018c0..af6ffcdd 100644 --- a/Annotations/InkAnnotations/pom.xml +++ b/Annotations/InkAnnotations/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.InkAnnotations + + + + jar-with-dependencies + + + diff --git a/Annotations/LinkAnnotations/pom.xml b/Annotations/LinkAnnotations/pom.xml index bb37ee17..3c3c493b 100644 --- a/Annotations/LinkAnnotations/pom.xml +++ b/Annotations/LinkAnnotations/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.LinkAnnotations + + + + jar-with-dependencies + + + diff --git a/Annotations/PolyLineAnnotations/pom.xml b/Annotations/PolyLineAnnotations/pom.xml index fde1557a..aa28ee64 100644 --- a/Annotations/PolyLineAnnotations/pom.xml +++ b/Annotations/PolyLineAnnotations/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.PolyLineAnnotations + + + + jar-with-dependencies + + + diff --git a/Annotations/PolygonAnnotations/pom.xml b/Annotations/PolygonAnnotations/pom.xml index 3afa7f2d..ef1e654e 100644 --- a/Annotations/PolygonAnnotations/pom.xml +++ b/Annotations/PolygonAnnotations/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.PolygonAnnotations + + + + jar-with-dependencies + + + diff --git a/ContentCreation/AddElements/pom.xml b/ContentCreation/AddElements/pom.xml index a86d55b5..b053fae0 100644 --- a/ContentCreation/AddElements/pom.xml +++ b/ContentCreation/AddElements/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.AddElements + + + + jar-with-dependencies + + + diff --git a/ContentCreation/AddHeaderFooter/pom.xml b/ContentCreation/AddHeaderFooter/pom.xml index 92780b95..428dcf49 100644 --- a/ContentCreation/AddHeaderFooter/pom.xml +++ b/ContentCreation/AddHeaderFooter/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.AddHeaderFooter + + + + jar-with-dependencies + + + diff --git a/ContentCreation/Clips/pom.xml b/ContentCreation/Clips/pom.xml index c395ab43..45dfb179 100644 --- a/ContentCreation/Clips/pom.xml +++ b/ContentCreation/Clips/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.Clips + + + + jar-with-dependencies + + + diff --git a/ContentCreation/CreateBookmarks/pom.xml b/ContentCreation/CreateBookmarks/pom.xml index d9e5c99c..ffe16278 100644 --- a/ContentCreation/CreateBookmarks/pom.xml +++ b/ContentCreation/CreateBookmarks/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.CreateBookmarks + + + + jar-with-dependencies + + + diff --git a/ContentCreation/GradientShade/pom.xml b/ContentCreation/GradientShade/pom.xml index 1bd96a64..9bbcac00 100644 --- a/ContentCreation/GradientShade/pom.xml +++ b/ContentCreation/GradientShade/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.GradientShade + + + + jar-with-dependencies + + + diff --git a/ContentCreation/MakeDocWithCalGrayColorSpace/pom.xml b/ContentCreation/MakeDocWithCalGrayColorSpace/pom.xml index 43ada9fa..3be2bff7 100644 --- a/ContentCreation/MakeDocWithCalGrayColorSpace/pom.xml +++ b/ContentCreation/MakeDocWithCalGrayColorSpace/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.MakeDocWithCalGrayColorSpace + + + + jar-with-dependencies + + + diff --git a/ContentCreation/MakeDocWithCalRGBColorSpace/pom.xml b/ContentCreation/MakeDocWithCalRGBColorSpace/pom.xml index c6acc6d2..73cb60f4 100644 --- a/ContentCreation/MakeDocWithCalRGBColorSpace/pom.xml +++ b/ContentCreation/MakeDocWithCalRGBColorSpace/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.MakeDocWithCalRGBColorSpace + + + + jar-with-dependencies + + + diff --git a/ContentCreation/MakeDocWithDeviceNColorSpace/pom.xml b/ContentCreation/MakeDocWithDeviceNColorSpace/pom.xml index b0d36a39..9ff49d87 100644 --- a/ContentCreation/MakeDocWithDeviceNColorSpace/pom.xml +++ b/ContentCreation/MakeDocWithDeviceNColorSpace/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.MakeDocWithDeviceNColorSpace + + + + jar-with-dependencies + + + diff --git a/ContentCreation/MakeDocWithICCBasedColorSpace/pom.xml b/ContentCreation/MakeDocWithICCBasedColorSpace/pom.xml index 305c927f..5ee8b1ad 100644 --- a/ContentCreation/MakeDocWithICCBasedColorSpace/pom.xml +++ b/ContentCreation/MakeDocWithICCBasedColorSpace/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.MakeDocWithICCBasedColorSpace + + + + jar-with-dependencies + + + diff --git a/ContentCreation/MakeDocWithIndexedColorSpace/pom.xml b/ContentCreation/MakeDocWithIndexedColorSpace/pom.xml index 5317b44c..2fa67e7d 100644 --- a/ContentCreation/MakeDocWithIndexedColorSpace/pom.xml +++ b/ContentCreation/MakeDocWithIndexedColorSpace/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.MakeDocWithIndexedColorSpace + + + + jar-with-dependencies + + + diff --git a/ContentCreation/MakeDocWithLabColorSpace/pom.xml b/ContentCreation/MakeDocWithLabColorSpace/pom.xml index ad16d755..c1189066 100644 --- a/ContentCreation/MakeDocWithLabColorSpace/pom.xml +++ b/ContentCreation/MakeDocWithLabColorSpace/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.MakeDocWithLabColorSpace + + + + jar-with-dependencies + + + diff --git a/ContentCreation/MakeDocWithSeparationColorSpace/pom.xml b/ContentCreation/MakeDocWithSeparationColorSpace/pom.xml index 63700c9b..9e9ea57c 100644 --- a/ContentCreation/MakeDocWithSeparationColorSpace/pom.xml +++ b/ContentCreation/MakeDocWithSeparationColorSpace/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.MakeDocWithSeparationColorSpace + + + + jar-with-dependencies + + + diff --git a/ContentCreation/NameTrees/pom.xml b/ContentCreation/NameTrees/pom.xml index 86ae4459..510003e6 100644 --- a/ContentCreation/NameTrees/pom.xml +++ b/ContentCreation/NameTrees/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.NameTrees + + + + jar-with-dependencies + + + diff --git a/ContentCreation/NumberTrees/pom.xml b/ContentCreation/NumberTrees/pom.xml index f40fce55..b61b6fe3 100644 --- a/ContentCreation/NumberTrees/pom.xml +++ b/ContentCreation/NumberTrees/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.NumberTrees + + + + jar-with-dependencies + + + diff --git a/ContentCreation/RemoteGoToActions/pom.xml b/ContentCreation/RemoteGoToActions/pom.xml index c398d89d..2bb3cdb9 100644 --- a/ContentCreation/RemoteGoToActions/pom.xml +++ b/ContentCreation/RemoteGoToActions/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.RemoteGoToActions + + + + jar-with-dependencies + + + diff --git a/ContentCreation/WriteNChannelTiff/pom.xml b/ContentCreation/WriteNChannelTiff/pom.xml index 7a5a2638..a92256e7 100644 --- a/ContentCreation/WriteNChannelTiff/pom.xml +++ b/ContentCreation/WriteNChannelTiff/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.WriteNChannelTiff + + + + jar-with-dependencies + + + diff --git a/ContentModification/Actions/pom.xml b/ContentModification/Actions/pom.xml index 4be971ed..3854a8ff 100644 --- a/ContentModification/Actions/pom.xml +++ b/ContentModification/Actions/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.Actions + + + + jar-with-dependencies + + + diff --git a/ContentModification/AddCollection/pom.xml b/ContentModification/AddCollection/pom.xml index 3adb123a..67540ba2 100644 --- a/ContentModification/AddCollection/pom.xml +++ b/ContentModification/AddCollection/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.AddCollection + + + + jar-with-dependencies + + + diff --git a/ContentModification/AddQRCode/pom.xml b/ContentModification/AddQRCode/pom.xml index c057b44e..de11a205 100644 --- a/ContentModification/AddQRCode/pom.xml +++ b/ContentModification/AddQRCode/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.AddQRCode + + + + jar-with-dependencies + + + diff --git a/ContentModification/ChangeLayerConfiguration/pom.xml b/ContentModification/ChangeLayerConfiguration/pom.xml index 84a4fbba..0b19a449 100644 --- a/ContentModification/ChangeLayerConfiguration/pom.xml +++ b/ContentModification/ChangeLayerConfiguration/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ChangeLayerConfiguration + + + + jar-with-dependencies + + + diff --git a/ContentModification/ChangeLinkColors/pom.xml b/ContentModification/ChangeLinkColors/pom.xml index 5b0e6b00..bb2ee8e8 100644 --- a/ContentModification/ChangeLinkColors/pom.xml +++ b/ContentModification/ChangeLinkColors/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ChangeLinkColors + + + + jar-with-dependencies + + + diff --git a/ContentModification/CreateLayer/pom.xml b/ContentModification/CreateLayer/pom.xml index 31637b6d..f78641aa 100644 --- a/ContentModification/CreateLayer/pom.xml +++ b/ContentModification/CreateLayer/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.CreateLayer + + + + jar-with-dependencies + + + diff --git a/ContentModification/ExtendedGraphicStates/pom.xml b/ContentModification/ExtendedGraphicStates/pom.xml index b18d8487..282793de 100644 --- a/ContentModification/ExtendedGraphicStates/pom.xml +++ b/ContentModification/ExtendedGraphicStates/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ExtendedGraphicStates + + + + jar-with-dependencies + + + diff --git a/ContentModification/FlattenTransparency/pom.xml b/ContentModification/FlattenTransparency/pom.xml index df378965..fa64e093 100644 --- a/ContentModification/FlattenTransparency/pom.xml +++ b/ContentModification/FlattenTransparency/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.FlattenTransparency + + + + jar-with-dependencies + + + diff --git a/ContentModification/LaunchActions/pom.xml b/ContentModification/LaunchActions/pom.xml index 2e558512..f4c6cb0e 100644 --- a/ContentModification/LaunchActions/pom.xml +++ b/ContentModification/LaunchActions/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.LaunchActions + + + + jar-with-dependencies + + + diff --git a/ContentModification/MergePDF/pom.xml b/ContentModification/MergePDF/pom.xml index 78fbbc45..bcf9f95d 100644 --- a/ContentModification/MergePDF/pom.xml +++ b/ContentModification/MergePDF/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.MergePDF + + + + jar-with-dependencies + + + diff --git a/ContentModification/PDFObject/pom.xml b/ContentModification/PDFObject/pom.xml index 6be78bc6..eb1a6169 100644 --- a/ContentModification/PDFObject/pom.xml +++ b/ContentModification/PDFObject/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.PDFObject + + + + jar-with-dependencies + + + diff --git a/ContentModification/PDFObject/src/main/java/com/datalogics/pdfl/samples/PDFObjectSample.java b/ContentModification/PDFObject/src/main/java/com/datalogics/pdfl/samples/PDFObject.java similarity index 99% rename from ContentModification/PDFObject/src/main/java/com/datalogics/pdfl/samples/PDFObjectSample.java rename to ContentModification/PDFObject/src/main/java/com/datalogics/pdfl/samples/PDFObject.java index 705f2a1d..320c3f02 100644 --- a/ContentModification/PDFObject/src/main/java/com/datalogics/pdfl/samples/PDFObjectSample.java +++ b/ContentModification/PDFObject/src/main/java/com/datalogics/pdfl/samples/PDFObject.java @@ -19,7 +19,7 @@ * Copyright (c) 2007-2023, Datalogics, Inc. All rights reserved. * */ -public class PDFObjectSample { +public class PDFObject { /** * @param args diff --git a/ContentModification/PageLabels/pom.xml b/ContentModification/PageLabels/pom.xml index 4bfa78f0..eef47199 100644 --- a/ContentModification/PageLabels/pom.xml +++ b/ContentModification/PageLabels/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.PageLabels + + + + jar-with-dependencies + + + diff --git a/ContentModification/UnderlinesAndHighlights/pom.xml b/ContentModification/UnderlinesAndHighlights/pom.xml index 6539ad7e..ab0beebb 100644 --- a/ContentModification/UnderlinesAndHighlights/pom.xml +++ b/ContentModification/UnderlinesAndHighlights/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.UnderlinesAndHighlights + + + + jar-with-dependencies + + + diff --git a/ContentModification/Watermark/pom.xml b/ContentModification/Watermark/pom.xml index d6187ca0..4333157e 100644 --- a/ContentModification/Watermark/pom.xml +++ b/ContentModification/Watermark/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.Watermark + + + + jar-with-dependencies + + + diff --git a/Display/DisplayPDF/pom.xml b/Display/DisplayPDF/pom.xml index 141e2331..5012e26e 100644 --- a/Display/DisplayPDF/pom.xml +++ b/Display/DisplayPDF/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.DisplayPDF + + + + jar-with-dependencies + + + diff --git a/Display/ImageDisplay/pom.xml b/Display/ImageDisplay/pom.xml index 99898968..96bf2f96 100644 --- a/Display/ImageDisplay/pom.xml +++ b/Display/ImageDisplay/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ImageDisplay + + + + jar-with-dependencies + + + diff --git a/Display/JavaViewer/pom.xml b/Display/JavaViewer/pom.xml index 5f011aba..6f37cec0 100644 --- a/Display/JavaViewer/pom.xml +++ b/Display/JavaViewer/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.JavaViewer + + + + jar-with-dependencies + + + diff --git a/Display/PDFObjectExplorer/pom.xml b/Display/PDFObjectExplorer/pom.xml index c9b8aaec..5ec48343 100644 --- a/Display/PDFObjectExplorer/pom.xml +++ b/Display/PDFObjectExplorer/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.PDFObjectExplorer + + + + jar-with-dependencies + + + diff --git a/DocumentConversion/ColorConvertDocument/pom.xml b/DocumentConversion/ColorConvertDocument/pom.xml index 9402d79c..b99cb892 100644 --- a/DocumentConversion/ColorConvertDocument/pom.xml +++ b/DocumentConversion/ColorConvertDocument/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ColorConvertDocument + + + + jar-with-dependencies + + + diff --git a/DocumentConversion/ConvertToOffice/pom.xml b/DocumentConversion/ConvertToOffice/pom.xml index e8a9e459..1e9bd8e1 100644 --- a/DocumentConversion/ConvertToOffice/pom.xml +++ b/DocumentConversion/ConvertToOffice/pom.xml @@ -39,32 +39,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -139,6 +139,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ConvertToOffice + + + + jar-with-dependencies + + + diff --git a/DocumentConversion/CreateDocFromXPS/pom.xml b/DocumentConversion/CreateDocFromXPS/pom.xml index 6aa01e8e..fe26c36c 100644 --- a/DocumentConversion/CreateDocFromXPS/pom.xml +++ b/DocumentConversion/CreateDocFromXPS/pom.xml @@ -39,32 +39,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -139,6 +139,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.CreateDocFromXPS + + + + jar-with-dependencies + + + diff --git a/DocumentConversion/FacturXConverter/pom.xml b/DocumentConversion/FacturXConverter/pom.xml index d661f185..02f0b806 100644 --- a/DocumentConversion/FacturXConverter/pom.xml +++ b/DocumentConversion/FacturXConverter/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.FacturXConverter + + + + jar-with-dependencies + + + diff --git a/DocumentConversion/PDFAConverter/pom.xml b/DocumentConversion/PDFAConverter/pom.xml index edf0a17b..a2d3d206 100644 --- a/DocumentConversion/PDFAConverter/pom.xml +++ b/DocumentConversion/PDFAConverter/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.PDFAConverter + + + + jar-with-dependencies + + + diff --git a/DocumentConversion/PDFXConverter/pom.xml b/DocumentConversion/PDFXConverter/pom.xml index fc0df693..bd8e0c45 100644 --- a/DocumentConversion/PDFXConverter/pom.xml +++ b/DocumentConversion/PDFXConverter/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.PDFXConverter + + + + jar-with-dependencies + + + diff --git a/DocumentConversion/ZUGFeRDConverter/pom.xml b/DocumentConversion/ZUGFeRDConverter/pom.xml index 29dfd0e5..250e265f 100644 --- a/DocumentConversion/ZUGFeRDConverter/pom.xml +++ b/DocumentConversion/ZUGFeRDConverter/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ZUGFeRDConverter + + + + jar-with-dependencies + + + diff --git a/DocumentOptimization/PDFOptimize/pom.xml b/DocumentOptimization/PDFOptimize/pom.xml index 14486fed..050ee5f6 100644 --- a/DocumentOptimization/PDFOptimize/pom.xml +++ b/DocumentOptimization/PDFOptimize/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.PDFOptimize + + + + jar-with-dependencies + + + diff --git a/Images/DocToImages/pom.xml b/Images/DocToImages/pom.xml index d055a324..8c363df7 100644 --- a/Images/DocToImages/pom.xml +++ b/Images/DocToImages/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.DocToImages + + + + jar-with-dependencies + + + diff --git a/Images/DrawSeparations/pom.xml b/Images/DrawSeparations/pom.xml index 2b2bf5be..e6d92679 100644 --- a/Images/DrawSeparations/pom.xml +++ b/Images/DrawSeparations/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.DrawSeparations + + + + jar-with-dependencies + + + diff --git a/Images/EPSSeparations/pom.xml b/Images/EPSSeparations/pom.xml index f0953c9c..91e61af0 100644 --- a/Images/EPSSeparations/pom.xml +++ b/Images/EPSSeparations/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.EPSSeparations + + + + jar-with-dependencies + + + diff --git a/Images/GetSeparatedImages/pom.xml b/Images/GetSeparatedImages/pom.xml index 7d4310dc..ec6dc885 100644 --- a/Images/GetSeparatedImages/pom.xml +++ b/Images/GetSeparatedImages/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.GetSeparatedImages + + + + jar-with-dependencies + + + diff --git a/Images/ImageDisplayByteArray/pom.xml b/Images/ImageDisplayByteArray/pom.xml index af1c490f..2b2c0cd4 100644 --- a/Images/ImageDisplayByteArray/pom.xml +++ b/Images/ImageDisplayByteArray/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ImageDisplayByteArray + + + + jar-with-dependencies + + + diff --git a/Images/ImageEmbedICCProfile/pom.xml b/Images/ImageEmbedICCProfile/pom.xml index 7136897c..a3f76c47 100644 --- a/Images/ImageEmbedICCProfile/pom.xml +++ b/Images/ImageEmbedICCProfile/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ImageEmbedICCProfile + + + + jar-with-dependencies + + + diff --git a/Images/ImageExport/pom.xml b/Images/ImageExport/pom.xml index 8ed2a462..cb2c7c38 100644 --- a/Images/ImageExport/pom.xml +++ b/Images/ImageExport/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ImageExport + + + + jar-with-dependencies + + + diff --git a/Images/ImageExtraction/pom.xml b/Images/ImageExtraction/pom.xml index b6619c7b..bb6f54da 100644 --- a/Images/ImageExtraction/pom.xml +++ b/Images/ImageExtraction/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ImageExtraction + + + + jar-with-dependencies + + + diff --git a/Images/ImageFromBufferedImage/pom.xml b/Images/ImageFromBufferedImage/pom.xml index 03609976..dd1a20f8 100644 --- a/Images/ImageFromBufferedImage/pom.xml +++ b/Images/ImageFromBufferedImage/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ImageFromBufferedImage + + + + jar-with-dependencies + + + diff --git a/Images/ImageFromByteArray/pom.xml b/Images/ImageFromByteArray/pom.xml index 7303eb7f..15d70491 100644 --- a/Images/ImageFromByteArray/pom.xml +++ b/Images/ImageFromByteArray/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ImageFromByteArray + + + + jar-with-dependencies + + + diff --git a/Images/ImageImport/pom.xml b/Images/ImageImport/pom.xml index 76244b12..10e65448 100644 --- a/Images/ImageImport/pom.xml +++ b/Images/ImageImport/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ImageImport + + + + jar-with-dependencies + + + diff --git a/Images/ImageResampling/pom.xml b/Images/ImageResampling/pom.xml index 39040f91..7fcd8b18 100644 --- a/Images/ImageResampling/pom.xml +++ b/Images/ImageResampling/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ImageResampling + + + + jar-with-dependencies + + + diff --git a/Images/OutputPreview/pom.xml b/Images/OutputPreview/pom.xml index f4095e14..8d8218eb 100644 --- a/Images/OutputPreview/pom.xml +++ b/Images/OutputPreview/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.OutputPreview + + + + jar-with-dependencies + + + diff --git a/Images/RasterizePage/pom.xml b/Images/RasterizePage/pom.xml index ca1cec9c..9507d8c1 100644 --- a/Images/RasterizePage/pom.xml +++ b/Images/RasterizePage/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.RasterizePage + + + + jar-with-dependencies + + + diff --git a/InformationExtraction/ListBookmarks/pom.xml b/InformationExtraction/ListBookmarks/pom.xml index 01325fdf..a12f47c7 100644 --- a/InformationExtraction/ListBookmarks/pom.xml +++ b/InformationExtraction/ListBookmarks/pom.xml @@ -2,7 +2,7 @@ 4.0.0 com.datalogics.pdfl.samples - ListBookMarks + ListBookmarks 1.0-SNAPSHOT 1.8 @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ListBookmarks + + + + jar-with-dependencies + + + diff --git a/InformationExtraction/ListFonts/pom.xml b/InformationExtraction/ListFonts/pom.xml index 0ff826d7..d93d9d29 100644 --- a/InformationExtraction/ListFonts/pom.xml +++ b/InformationExtraction/ListFonts/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ListFonts + + + + jar-with-dependencies + + + diff --git a/InformationExtraction/ListInfo/pom.xml b/InformationExtraction/ListInfo/pom.xml index dda3f790..849996af 100644 --- a/InformationExtraction/ListInfo/pom.xml +++ b/InformationExtraction/ListInfo/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ListInfo + + + + jar-with-dependencies + + + diff --git a/InformationExtraction/ListLayers/pom.xml b/InformationExtraction/ListLayers/pom.xml index d8e3e5e0..e402912f 100644 --- a/InformationExtraction/ListLayers/pom.xml +++ b/InformationExtraction/ListLayers/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ListLayers + + + + jar-with-dependencies + + + diff --git a/InformationExtraction/ListPaths/pom.xml b/InformationExtraction/ListPaths/pom.xml index e455af73..84335119 100644 --- a/InformationExtraction/ListPaths/pom.xml +++ b/InformationExtraction/ListPaths/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ListPaths + + + + jar-with-dependencies + + + diff --git a/InformationExtraction/Metadata/pom.xml b/InformationExtraction/Metadata/pom.xml index e7e03bc3..0d595253 100644 --- a/InformationExtraction/Metadata/pom.xml +++ b/InformationExtraction/Metadata/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.Metadata + + + + jar-with-dependencies + + + diff --git a/OpticalCharacterRecognition/AddTextToDocument/pom.xml b/OpticalCharacterRecognition/AddTextToDocument/pom.xml index b06f73d9..4c420a57 100644 --- a/OpticalCharacterRecognition/AddTextToDocument/pom.xml +++ b/OpticalCharacterRecognition/AddTextToDocument/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.AddTextToDocument + + + + jar-with-dependencies + + + diff --git a/OpticalCharacterRecognition/AddTextToImage/pom.xml b/OpticalCharacterRecognition/AddTextToImage/pom.xml index 503f0663..1844a6f6 100644 --- a/OpticalCharacterRecognition/AddTextToImage/pom.xml +++ b/OpticalCharacterRecognition/AddTextToImage/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.AddTextToImage + + + + jar-with-dependencies + + + diff --git a/Other/MemoryFileSystem/pom.xml b/Other/MemoryFileSystem/pom.xml index 9257b82a..10f5ecab 100644 --- a/Other/MemoryFileSystem/pom.xml +++ b/Other/MemoryFileSystem/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.MemoryFileSystem + + + + jar-with-dependencies + + + diff --git a/Other/StreamIO/pom.xml b/Other/StreamIO/pom.xml index a784bf2c..ef8a23ae 100644 --- a/Other/StreamIO/pom.xml +++ b/Other/StreamIO/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.StreamIO + + + + jar-with-dependencies + + + diff --git a/Printing/PrintPDF/pom.xml b/Printing/PrintPDF/pom.xml index 7b45ce73..0bdcdefc 100644 --- a/Printing/PrintPDF/pom.xml +++ b/Printing/PrintPDF/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.PrintPDF + + + + jar-with-dependencies + + + diff --git a/Printing/PrintPDFGUI/pom.xml b/Printing/PrintPDFGUI/pom.xml index c1c5852f..308bceab 100644 --- a/Printing/PrintPDFGUI/pom.xml +++ b/Printing/PrintPDFGUI/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.PrintPDFGUI + + + + jar-with-dependencies + + + diff --git a/Security/AddRegexRedaction/pom.xml b/Security/AddRegexRedaction/pom.xml index 5daba7ec..2cbcc82a 100644 --- a/Security/AddRegexRedaction/pom.xml +++ b/Security/AddRegexRedaction/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.AddRegexRedaction + + + + jar-with-dependencies + + + diff --git a/Security/Redactions/pom.xml b/Security/Redactions/pom.xml index 1a0e049d..135e8c50 100644 --- a/Security/Redactions/pom.xml +++ b/Security/Redactions/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.Redactions + + + + jar-with-dependencies + + + diff --git a/Text/AddGlyphs/pom.xml b/Text/AddGlyphs/pom.xml index c40d2ad7..e3bb82e8 100644 --- a/Text/AddGlyphs/pom.xml +++ b/Text/AddGlyphs/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.AddGlyphs + + + + jar-with-dependencies + + + diff --git a/Text/AddUnicodeText/pom.xml b/Text/AddUnicodeText/pom.xml index ff45b57c..4fc7e6fc 100644 --- a/Text/AddUnicodeText/pom.xml +++ b/Text/AddUnicodeText/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.AddUnicodeText + + + + jar-with-dependencies + + + diff --git a/Text/AddVerticalText/pom.xml b/Text/AddVerticalText/pom.xml index 85a60e53..e04a7b1a 100644 --- a/Text/AddVerticalText/pom.xml +++ b/Text/AddVerticalText/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.AddVerticalText + + + + jar-with-dependencies + + + diff --git a/Text/ListWords/pom.xml b/Text/ListWords/pom.xml index 41c9b3c5..17e4f49a 100644 --- a/Text/ListWords/pom.xml +++ b/Text/ListWords/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.ListWords + + + + jar-with-dependencies + + + diff --git a/Text/RegexExtractText/pom.xml b/Text/RegexExtractText/pom.xml index 821f185e..01397a06 100644 --- a/Text/RegexExtractText/pom.xml +++ b/Text/RegexExtractText/pom.xml @@ -56,32 +56,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -156,6 +156,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.RegexExtractText + + + + jar-with-dependencies + + + diff --git a/Text/RegexTextSearch/pom.xml b/Text/RegexTextSearch/pom.xml index 5b7515d3..4adde76d 100644 --- a/Text/RegexTextSearch/pom.xml +++ b/Text/RegexTextSearch/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.RegexTextSearch + + + + jar-with-dependencies + + + diff --git a/Text/TextExtract/pom.xml b/Text/TextExtract/pom.xml index cf89acca..16c97e4b 100644 --- a/Text/TextExtract/pom.xml +++ b/Text/TextExtract/pom.xml @@ -51,32 +51,32 @@ com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 pom com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip ${jni.classifier} com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 zip resources com.datalogics.pdfl pdfl - 18.34.0 + 18.35.0 javadoc @@ -151,6 +151,28 @@ + + maven-assembly-plugin + + + package + + single + + + + + + + true + com.datalogics.pdfl.samples.TextExtract + + + + jar-with-dependencies + + +