|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Let me see if I understand the flow of logic. It is trying to resolve a symlink, correct? Util.java -> resolveSymlink.
First, it tries calling 'java.nio.file.Files' in Java7. If that isn't available, it tries to load this library:
https://kenai.com/projects/jna-posix/sources/mercurial/show/src/org/jruby/ext/posix?rev=59
If that fails, it tries to load this library:
https://github.com/jnr/jnr-posix/tree/master/src/main/java/jnr/posix
All three fail, possibly due to using a non-Oracle Java runtime? The key section in the logs being:
java.lang.NoClassDefFoundError: Could not initialize class com.sun.jna.Native
at org.jruby.ext.posix.POSIXFactory.loadLibC(POSIXFactory.java:96)
I suppose that makes this a duplicate of JENKINS-13202?