[jira] [Commented] (PDFBOX-3889) javax.crypto.BadPaddingException: Given final block not properly padded

2017-08-08 Thread Tilman Hausherr (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3889?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118938#comment-16118938
 ] 

Tilman Hausherr commented on PDFBOX-3889:
-

Here's the code I used:
{code}
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import org.apache.pdfbox.pdmodel.PDDocument;


public class PDFBox3889
{
public static void main(String[] args) throws MalformedURLException, 
IOException
{
PDDocument doc = PDDocument.loadNonSeq(new 
URL("https://issues.apache.org/jira/secure/attachment/12880876/14-03-1159.pdf;).openStream(),
 null);
System.out.println(doc.getNumberOfPages());
doc.close();
}
}
{code}
It outputs a warning and then 7.

Just to be sure - do you have the error when opening the file? Or when doing 
something else?

> javax.crypto.BadPaddingException: Given final block not properly padded
> ---
>
> Key: PDFBOX-3889
> URL: https://issues.apache.org/jira/browse/PDFBOX-3889
> Project: PDFBox
>  Issue Type: Bug
>  Components: Crypto
>Affects Versions: 1.8.13
> Environment: Java 1.8.  Pdfbox 1.8.13  Windows and Linux
>Reporter: Lucille Wilson
>  Labels: security
> Attachments: 14-03-1159.pdf
>
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> Using the attached pdf, When running the pdf through 
> org.apache.pdfbox.pdmodel.encryption.SecurityHandler I get 
> BadPaddingException.
> The exception occurs when it is processing 
> nextObj = COSObject{3304,0} I see: nextCOSBase = 
> COSDictionary{(COSName{Length}:COSInt{3504}) (COSName{Subtype}:COSName{XML}) 
> (COSName{Type}:COSName{Metadata}) } 
> The problem is that SecurityHandler.proceedDecryption() runs  
> decryptObject(nextObj);
>  and then decrypt(base, objNum, genNum) and then decryptStream()
> However for this object decryptStream doesn't actually decrypt anything 
> because the type is xml.  
> So when decryptStream calls encryptData() encryptData() throws the bad packet 
> exception.
>  output.write(decryptCipher.doFinal()); throws the exception because the data 
> buffer is all zeros.  It has nothing in it.  I recommend that encryption be 
> skipped if the data buffer has all zeros.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3889) javax.crypto.BadPaddingException: Given final block not properly padded

2017-08-08 Thread Lucille Wilson (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3889?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118926#comment-16118926
 ] 

Lucille Wilson commented on PDFBOX-3889:


I tried loadNonSeq() and that did not resolve my issue under pdfbox 1.8.13.  I 
can't use pdfbox v2.

> javax.crypto.BadPaddingException: Given final block not properly padded
> ---
>
> Key: PDFBOX-3889
> URL: https://issues.apache.org/jira/browse/PDFBOX-3889
> Project: PDFBox
>  Issue Type: Bug
>  Components: Crypto
>Affects Versions: 1.8.13
> Environment: Java 1.8.  Pdfbox 1.8.13  Windows and Linux
>Reporter: Lucille Wilson
>  Labels: security
> Attachments: 14-03-1159.pdf
>
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> Using the attached pdf, When running the pdf through 
> org.apache.pdfbox.pdmodel.encryption.SecurityHandler I get 
> BadPaddingException.
> The exception occurs when it is processing 
> nextObj = COSObject{3304,0} I see: nextCOSBase = 
> COSDictionary{(COSName{Length}:COSInt{3504}) (COSName{Subtype}:COSName{XML}) 
> (COSName{Type}:COSName{Metadata}) } 
> The problem is that SecurityHandler.proceedDecryption() runs  
> decryptObject(nextObj);
>  and then decrypt(base, objNum, genNum) and then decryptStream()
> However for this object decryptStream doesn't actually decrypt anything 
> because the type is xml.  
> So when decryptStream calls encryptData() encryptData() throws the bad packet 
> exception.
>  output.write(decryptCipher.doFinal()); throws the exception because the data 
> buffer is all zeros.  It has nothing in it.  I recommend that encryption be 
> skipped if the data buffer has all zeros.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Comment Edited] (PDFBOX-3889) javax.crypto.BadPaddingException: Given final block not properly padded

2017-08-08 Thread Tilman Hausherr (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3889?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118858#comment-16118858
 ] 

Tilman Hausherr edited comment on PDFBOX-3889 at 8/8/17 7:34 PM:
-

I am able to open that file with 2.0.7, or with 1.8.13 when using 
{{PDDocument.loadNonSeq()}}. Please try that and confirm that it works now.


was (Author: tilman):
I am able to open that file with 2.0.7, or with 1.8.13 when using loadNonSeq. 
Please try that.

> javax.crypto.BadPaddingException: Given final block not properly padded
> ---
>
> Key: PDFBOX-3889
> URL: https://issues.apache.org/jira/browse/PDFBOX-3889
> Project: PDFBox
>  Issue Type: Bug
>  Components: Crypto
>Affects Versions: 1.8.13
> Environment: Java 1.8.  Pdfbox 1.8.13  Windows and Linux
>Reporter: Lucille Wilson
>  Labels: security
> Attachments: 14-03-1159.pdf
>
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> Using the attached pdf, When running the pdf through 
> org.apache.pdfbox.pdmodel.encryption.SecurityHandler I get 
> BadPaddingException.
> The exception occurs when it is processing 
> nextObj = COSObject{3304,0} I see: nextCOSBase = 
> COSDictionary{(COSName{Length}:COSInt{3504}) (COSName{Subtype}:COSName{XML}) 
> (COSName{Type}:COSName{Metadata}) } 
> The problem is that SecurityHandler.proceedDecryption() runs  
> decryptObject(nextObj);
>  and then decrypt(base, objNum, genNum) and then decryptStream()
> However for this object decryptStream doesn't actually decrypt anything 
> because the type is xml.  
> So when decryptStream calls encryptData() encryptData() throws the bad packet 
> exception.
>  output.write(decryptCipher.doFinal()); throws the exception because the data 
> buffer is all zeros.  It has nothing in it.  I recommend that encryption be 
> skipped if the data buffer has all zeros.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



Jenkins build is back to normal : PDFBox-2.0.x #660

2017-08-08 Thread Apache Jenkins Server
See 



-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



Jenkins build is back to normal : PDFBox-2.0.x » Apache Preflight #660

2017-08-08 Thread Apache Jenkins Server
See 



-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3889) javax.crypto.BadPaddingException: Given final block not properly padded

2017-08-08 Thread Tilman Hausherr (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3889?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118858#comment-16118858
 ] 

Tilman Hausherr commented on PDFBOX-3889:
-

I am able to open that file with 2.0.7, or with 1.8.13 when using loadNonSeq. 
Please try that.

> javax.crypto.BadPaddingException: Given final block not properly padded
> ---
>
> Key: PDFBOX-3889
> URL: https://issues.apache.org/jira/browse/PDFBOX-3889
> Project: PDFBox
>  Issue Type: Bug
>  Components: Crypto
>Affects Versions: 1.8.13
> Environment: Java 1.8.  Pdfbox 1.8.13  Windows and Linux
>Reporter: Lucille Wilson
>  Labels: security
> Attachments: 14-03-1159.pdf
>
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> Using the attached pdf, When running the pdf through 
> org.apache.pdfbox.pdmodel.encryption.SecurityHandler I get 
> BadPaddingException.
> The exception occurs when it is processing 
> nextObj = COSObject{3304,0} I see: nextCOSBase = 
> COSDictionary{(COSName{Length}:COSInt{3504}) (COSName{Subtype}:COSName{XML}) 
> (COSName{Type}:COSName{Metadata}) } 
> The problem is that SecurityHandler.proceedDecryption() runs  
> decryptObject(nextObj);
>  and then decrypt(base, objNum, genNum) and then decryptStream()
> However for this object decryptStream doesn't actually decrypt anything 
> because the type is xml.  
> So when decryptStream calls encryptData() encryptData() throws the bad packet 
> exception.
>  output.write(decryptCipher.doFinal()); throws the exception because the data 
> buffer is all zeros.  It has nothing in it.  I recommend that encryption be 
> skipped if the data buffer has all zeros.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Updated] (PDFBOX-3889) javax.crypto.BadPaddingException: Given final block not properly padded

2017-08-08 Thread Tilman Hausherr (JIRA)

 [ 
https://issues.apache.org/jira/browse/PDFBOX-3889?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Tilman Hausherr updated PDFBOX-3889:

Fix Version/s: (was: 1.8.13)

> javax.crypto.BadPaddingException: Given final block not properly padded
> ---
>
> Key: PDFBOX-3889
> URL: https://issues.apache.org/jira/browse/PDFBOX-3889
> Project: PDFBox
>  Issue Type: Bug
>  Components: Crypto
>Affects Versions: 1.8.13
> Environment: Java 1.8.  Pdfbox 1.8.13  Windows and Linux
>Reporter: Lucille Wilson
>  Labels: security
> Attachments: 14-03-1159.pdf
>
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> Using the attached pdf, When running the pdf through 
> org.apache.pdfbox.pdmodel.encryption.SecurityHandler I get 
> BadPaddingException.
> The exception occurs when it is processing 
> nextObj = COSObject{3304,0} I see: nextCOSBase = 
> COSDictionary{(COSName{Length}:COSInt{3504}) (COSName{Subtype}:COSName{XML}) 
> (COSName{Type}:COSName{Metadata}) } 
> The problem is that SecurityHandler.proceedDecryption() runs  
> decryptObject(nextObj);
>  and then decrypt(base, objNum, genNum) and then decryptStream()
> However for this object decryptStream doesn't actually decrypt anything 
> because the type is xml.  
> So when decryptStream calls encryptData() encryptData() throws the bad packet 
> exception.
>  output.write(decryptCipher.doFinal()); throws the exception because the data 
> buffer is all zeros.  It has nothing in it.  I recommend that encryption be 
> skipped if the data buffer has all zeros.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



Jenkins build is back to normal : PDFBox-trunk #3522

2017-08-08 Thread Apache Jenkins Server
See 



-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



Jenkins build is back to normal : PDFBox-trunk » Apache Preflight #3522

2017-08-08 Thread Apache Jenkins Server
See 



-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



Build failed in Jenkins: PDFBox-2.0.x » Apache Preflight #659

2017-08-08 Thread Apache Jenkins Server
See 


Changes:

[tilman] PDFBOX-3584: add build option variable to be used for jdk9

--
[INFO] 
[INFO] 
[INFO] Building Apache Preflight 2.0.8-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ preflight ---
[TASKS] Scanning folder 
' 
for files matching the pattern '**/*.java' - excludes: 
[TASKS] Found 136 files to scan for tasks
Found 21 open tasks.
[TASKS] Computing warning deltas based on reference build #658
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ preflight ---
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ preflight 
---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 0 resource
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ preflight ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 111 source files to 

[INFO] 
[INFO] --- maven-download-plugin:1.1.0:wget (get-isartor) @ preflight ---
[INFO] Got from cache: 
/home/jenkins/jenkins-slave/maven-repositories/1/.cache/maven-download-plugin/isartor-pdfa-2008-08-13.zip
[INFO] 
[INFO] --- maven-download-plugin:1.1.0:wget (get-bavaria) @ preflight ---
[INFO] Got from cache: 
/home/jenkins/jenkins-slave/maven-repositories/1/.cache/maven-download-plugin/2009-04-03-Bavaria-pdfa.zip
[INFO] 
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ 
preflight ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 9 resources
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ 
preflight ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 25 source files to 

[INFO] 
[INFO] --- maven-surefire-plugin:2.17:test (default-test) @ preflight ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- animal-sniffer-maven-plugin:1.14:check (check-java-version) @ 
preflight ---
[INFO] Checking unresolved references to org.codehaus.mojo.signature:java16:1.0
[INFO] 
[INFO] --- maven-surefire-plugin:2.17:test (surefire-test) @ preflight ---
[INFO] Surefire report directory: 


---
 T E S T S
---
Error: Could not find or load main class ${addmod}

Results :

Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

[JENKINS] Recording test results

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3584) Build and test PDFBox with JDK9

2017-08-08 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118829#comment-16118829
 ] 

ASF subversion and git services commented on PDFBOX-3584:
-

Commit 1804456 from [~tilman] in branch 'pdfbox/trunk'
[ https://svn.apache.org/r1804456 ]

PDFBOX-3584: remove Xmx which broke the build

> Build and test PDFBox with JDK9
> ---
>
> Key: PDFBOX-3584
> URL: https://issues.apache.org/jira/browse/PDFBOX-3584
> Project: PDFBox
>  Issue Type: Task
>Reporter: Tilman Hausherr
>  Labels: jdk9
> Attachments: gs-bugzilla695582-transparency-fill-stroke.pdf
>
>
> Issue to collect problems and solutions for building and testing PDFBox with 
> JDK9.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3584) Build and test PDFBox with JDK9

2017-08-08 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118830#comment-16118830
 ] 

ASF subversion and git services commented on PDFBOX-3584:
-

Commit 1804457 from [~tilman] in branch 'pdfbox/branches/2.0'
[ https://svn.apache.org/r1804457 ]

PDFBOX-3584: remove Xmx which broke the build

> Build and test PDFBox with JDK9
> ---
>
> Key: PDFBOX-3584
> URL: https://issues.apache.org/jira/browse/PDFBOX-3584
> Project: PDFBox
>  Issue Type: Task
>Reporter: Tilman Hausherr
>  Labels: jdk9
> Attachments: gs-bugzilla695582-transparency-fill-stroke.pdf
>
>
> Issue to collect problems and solutions for building and testing PDFBox with 
> JDK9.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



Re: Build failed in Jenkins: PDFBox-trunk #3521

2017-08-08 Thread Tilman Hausherr

Am 08.08.2017 um 20:13 schrieb Apache Jenkins Server:

---
  T E S T S
---
Error: Could not find or load main class ${addmod}


Sorry about that. Maybe it's the last minute changes I made... I'll 
retest locally.


Tilman


-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Created] (PDFBOX-3889) javax.crypto.BadPaddingException: Given final block not properly padded

2017-08-08 Thread Lucille Wilson (JIRA)
Lucille Wilson created PDFBOX-3889:
--

 Summary: javax.crypto.BadPaddingException: Given final block not 
properly padded
 Key: PDFBOX-3889
 URL: https://issues.apache.org/jira/browse/PDFBOX-3889
 Project: PDFBox
  Issue Type: Bug
  Components: Crypto
Affects Versions: 1.8.13
 Environment: Java 1.8.  Pdfbox 1.8.13  Windows and Linux
Reporter: Lucille Wilson
 Fix For: 1.8.13
 Attachments: 14-03-1159.pdf

Using the attached pdf, When running the pdf through 
org.apache.pdfbox.pdmodel.encryption.SecurityHandler I get 
BadPaddingException.

The exception occurs when it is processing 
nextObj = COSObject{3304,0} I see: nextCOSBase = 
COSDictionary{(COSName{Length}:COSInt{3504}) (COSName{Subtype}:COSName{XML}) 
(COSName{Type}:COSName{Metadata}) } 


The problem is that SecurityHandler.proceedDecryption() runs  
decryptObject(nextObj);
 and then decrypt(base, objNum, genNum) and then decryptStream()

However for this object decryptStream doesn't actually decrypt anything because 
the type is xml.  

So when decryptStream calls encryptData() encryptData() throws the bad packet 
exception.
 output.write(decryptCipher.doFinal()); throws the exception because the data 
buffer is all zeros.  It has nothing in it.  I recommend that encryption be 
skipped if the data buffer has all zeros.






--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3584) Build and test PDFBox with JDK9

2017-08-08 Thread Tilman Hausherr (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118785#comment-16118785
 ] 

Tilman Hausherr commented on PDFBOX-3584:
-

A jdk9 build now needs this:
{code}
mvn -Pjdk9 install
{code}

On Jenkins it would be
{code}
mvn clean deploy -Pjdk9,pedantic -Dskip-bavaria=false
{code}


> Build and test PDFBox with JDK9
> ---
>
> Key: PDFBOX-3584
> URL: https://issues.apache.org/jira/browse/PDFBOX-3584
> Project: PDFBox
>  Issue Type: Task
>Reporter: Tilman Hausherr
>  Labels: jdk9
> Attachments: gs-bugzilla695582-transparency-fill-stroke.pdf
>
>
> Issue to collect problems and solutions for building and testing PDFBox with 
> JDK9.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



Build failed in Jenkins: PDFBox-trunk » Apache Preflight #3521

2017-08-08 Thread Apache Jenkins Server
See 


Changes:

[tilman] PDFBOX-3584: add build option variable to be used for jdk9

--
[INFO] 
[INFO] 
[INFO] Building Apache Preflight 3.0.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ preflight ---
[TASKS] Scanning folder 
' 
for files matching the pattern '**/*.java' - excludes: 
[TASKS] Found 136 files to scan for tasks
Found 21 open tasks.
[TASKS] Computing warning deltas based on reference build #3520
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ preflight ---
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ preflight 
---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 0 resource
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ preflight ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 111 source files to 

[INFO] 
[INFO] --- maven-download-plugin:1.1.0:wget (get-isartor) @ preflight ---
[INFO] Got from cache: 
/home/jenkins/jenkins-slave/maven-repositories/0/.cache/maven-download-plugin/isartor-pdfa-2008-08-13.zip
[INFO] 
[INFO] --- maven-download-plugin:1.1.0:wget (get-bavaria) @ preflight ---
[INFO] Got from cache: 
/home/jenkins/jenkins-slave/maven-repositories/0/.cache/maven-download-plugin/2009-04-03-Bavaria-pdfa.zip
[INFO] 
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ 
preflight ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 9 resources
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ 
preflight ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 25 source files to 

[INFO] 
[INFO] --- maven-surefire-plugin:2.17:test (default-test) @ preflight ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- animal-sniffer-maven-plugin:1.15:check (check-java-version) @ 
preflight ---
[INFO] Checking unresolved references to org.codehaus.mojo.signature:java17:1.0
[INFO] 
[INFO] --- maven-surefire-plugin:2.17:test (surefire-test) @ preflight ---
[INFO] Surefire report directory: 


---
 T E S T S
---
Error: Could not find or load main class ${addmod}

Results :

Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

[JENKINS] Recording test results

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3584) Build and test PDFBox with JDK9

2017-08-08 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118777#comment-16118777
 ] 

ASF subversion and git services commented on PDFBOX-3584:
-

Commit 1804452 from [~tilman] in branch 'pdfbox/branches/2.0'
[ https://svn.apache.org/r1804452 ]

PDFBOX-3584: add build option variable to be used for jdk9

> Build and test PDFBox with JDK9
> ---
>
> Key: PDFBOX-3584
> URL: https://issues.apache.org/jira/browse/PDFBOX-3584
> Project: PDFBox
>  Issue Type: Task
>Reporter: Tilman Hausherr
>  Labels: jdk9
> Attachments: gs-bugzilla695582-transparency-fill-stroke.pdf
>
>
> Issue to collect problems and solutions for building and testing PDFBox with 
> JDK9.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3584) Build and test PDFBox with JDK9

2017-08-08 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118778#comment-16118778
 ] 

ASF subversion and git services commented on PDFBOX-3584:
-

Commit 1804453 from [~tilman] in branch 'pdfbox/trunk'
[ https://svn.apache.org/r1804453 ]

PDFBOX-3584: add build option variable to be used for jdk9

> Build and test PDFBox with JDK9
> ---
>
> Key: PDFBOX-3584
> URL: https://issues.apache.org/jira/browse/PDFBOX-3584
> Project: PDFBox
>  Issue Type: Task
>Reporter: Tilman Hausherr
>  Labels: jdk9
> Attachments: gs-bugzilla695582-transparency-fill-stroke.pdf
>
>
> Issue to collect problems and solutions for building and testing PDFBox with 
> JDK9.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3584) Build and test PDFBox with JDK9

2017-08-08 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118766#comment-16118766
 ] 

ASF subversion and git services commented on PDFBOX-3584:
-

Commit 1804451 from [~tilman] in branch 'pdfbox/branches/2.0'
[ https://svn.apache.org/r1804451 ]

PDFBOX-3584: add build option variable to be used for jdk9

> Build and test PDFBox with JDK9
> ---
>
> Key: PDFBOX-3584
> URL: https://issues.apache.org/jira/browse/PDFBOX-3584
> Project: PDFBox
>  Issue Type: Task
>Reporter: Tilman Hausherr
>  Labels: jdk9
> Attachments: gs-bugzilla695582-transparency-fill-stroke.pdf
>
>
> Issue to collect problems and solutions for building and testing PDFBox with 
> JDK9.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3584) Build and test PDFBox with JDK9

2017-08-08 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118765#comment-16118765
 ] 

ASF subversion and git services commented on PDFBOX-3584:
-

Commit 1804450 from [~tilman] in branch 'pdfbox/trunk'
[ https://svn.apache.org/r1804450 ]

PDFBOX-3584: add build option variable to be used for jdk9

> Build and test PDFBox with JDK9
> ---
>
> Key: PDFBOX-3584
> URL: https://issues.apache.org/jira/browse/PDFBOX-3584
> Project: PDFBox
>  Issue Type: Task
>Reporter: Tilman Hausherr
>  Labels: jdk9
> Attachments: gs-bugzilla695582-transparency-fill-stroke.pdf
>
>
> Issue to collect problems and solutions for building and testing PDFBox with 
> JDK9.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3584) Build and test PDFBox with JDK9

2017-08-08 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118755#comment-16118755
 ] 

ASF subversion and git services commented on PDFBOX-3584:
-

Commit 1804449 from [~tilman] in branch 'pdfbox/trunk'
[ https://svn.apache.org/r1804449 ]

PDFBOX-3584: add build option variable to be used for jdk9

> Build and test PDFBox with JDK9
> ---
>
> Key: PDFBOX-3584
> URL: https://issues.apache.org/jira/browse/PDFBOX-3584
> Project: PDFBox
>  Issue Type: Task
>Reporter: Tilman Hausherr
>  Labels: jdk9
> Attachments: gs-bugzilla695582-transparency-fill-stroke.pdf
>
>
> Issue to collect problems and solutions for building and testing PDFBox with 
> JDK9.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3584) Build and test PDFBox with JDK9

2017-08-08 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118754#comment-16118754
 ] 

ASF subversion and git services commented on PDFBOX-3584:
-

Commit 1804448 from [~tilman] in branch 'pdfbox/branches/2.0'
[ https://svn.apache.org/r1804448 ]

PDFBOX-3584: add build option variable to be used for jdk9

> Build and test PDFBox with JDK9
> ---
>
> Key: PDFBOX-3584
> URL: https://issues.apache.org/jira/browse/PDFBOX-3584
> Project: PDFBox
>  Issue Type: Task
>Reporter: Tilman Hausherr
>  Labels: jdk9
> Attachments: gs-bugzilla695582-transparency-fill-stroke.pdf
>
>
> Issue to collect problems and solutions for building and testing PDFBox with 
> JDK9.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3584) Build and test PDFBox with JDK9

2017-08-08 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118743#comment-16118743
 ] 

ASF subversion and git services commented on PDFBOX-3584:
-

Commit 1804446 from [~tilman] in branch 'pdfbox/branches/2.0'
[ https://svn.apache.org/r1804446 ]

PDFBOX-3584: add build option variable to be used for jdk9

> Build and test PDFBox with JDK9
> ---
>
> Key: PDFBOX-3584
> URL: https://issues.apache.org/jira/browse/PDFBOX-3584
> Project: PDFBox
>  Issue Type: Task
>Reporter: Tilman Hausherr
>  Labels: jdk9
> Attachments: gs-bugzilla695582-transparency-fill-stroke.pdf
>
>
> Issue to collect problems and solutions for building and testing PDFBox with 
> JDK9.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3584) Build and test PDFBox with JDK9

2017-08-08 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118742#comment-16118742
 ] 

ASF subversion and git services commented on PDFBOX-3584:
-

Commit 1804445 from [~tilman] in branch 'pdfbox/trunk'
[ https://svn.apache.org/r1804445 ]

PDFBOX-3584: add build option variable to be used for jdk9

> Build and test PDFBox with JDK9
> ---
>
> Key: PDFBOX-3584
> URL: https://issues.apache.org/jira/browse/PDFBOX-3584
> Project: PDFBox
>  Issue Type: Task
>Reporter: Tilman Hausherr
>  Labels: jdk9
> Attachments: gs-bugzilla695582-transparency-fill-stroke.pdf
>
>
> Issue to collect problems and solutions for building and testing PDFBox with 
> JDK9.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3875) Bookmarks inactive after PDFMergerUtility

2017-08-08 Thread JIRA

[ 
https://issues.apache.org/jira/browse/PDFBOX-3875?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118521#comment-16118521
 ] 

Andreas Lehmkühler commented on PDFBOX-3875:


[~smurugan] Please stop begging for any updates. We are all volunteers and are 
doing this in our free time.

> Bookmarks inactive after PDFMergerUtility
> -
>
> Key: PDFBOX-3875
> URL: https://issues.apache.org/jira/browse/PDFBOX-3875
> Project: PDFBox
>  Issue Type: Bug
>  Components: Utilities
>Affects Versions: 1.8.9, 2.0.7
>Reporter: Senthilvinayaham Murugan
> Attachments: 000314.pdf, 000334.pdf, 000337.pdf, 001124.pdf, 
> 001929.pdf, 001995.pdf, Acrobat_merge.pdf, EA-25471_frontmatter.pdf, 
> PDFsam_merge.pdf, W05.pdf
>
>
> I have two Bookmark PDFs with Page and Content links which works fine 
> independently. But when i use PDFMergerUtility, though it successfully merges 
> with PDF bookmarks, some of the page and content links are not working.
> Could you please let me know if you have any suggestions.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org



[jira] [Commented] (PDFBOX-3875) Bookmarks inactive after PDFMergerUtility

2017-08-08 Thread Senthilvinayaham Murugan (JIRA)

[ 
https://issues.apache.org/jira/browse/PDFBOX-3875?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16118464#comment-16118464
 ] 

Senthilvinayaham Murugan commented on PDFBOX-3875:
--

[~msahyoun]: Could you please give me the if it is ready?

> Bookmarks inactive after PDFMergerUtility
> -
>
> Key: PDFBOX-3875
> URL: https://issues.apache.org/jira/browse/PDFBOX-3875
> Project: PDFBox
>  Issue Type: Bug
>  Components: Utilities
>Affects Versions: 1.8.9, 2.0.7
>Reporter: Senthilvinayaham Murugan
> Attachments: 000314.pdf, 000334.pdf, 000337.pdf, 001124.pdf, 
> 001929.pdf, 001995.pdf, Acrobat_merge.pdf, EA-25471_frontmatter.pdf, 
> PDFsam_merge.pdf, W05.pdf
>
>
> I have two Bookmark PDFs with Page and Content links which works fine 
> independently. But when i use PDFMergerUtility, though it successfully merges 
> with PDF bookmarks, some of the page and content links are not working.
> Could you please let me know if you have any suggestions.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org