-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PDF backend - (LoadError) Could not find 'thread_safe' (~> 0.3.5) #413
Comments
sorry, it is also not working locally with this constallation |
so here are the versions that are working locally and not working on CI: maven-plugin: 1.5.2.1 and here is the stacktrace:
|
It is related with #402 |
Hi Rafael, asciidoctor-pdf switched to thread-safe 0.3.5, I think from alpha.9 or so on. asciidoctorj 1.5.3.2 brings the newer thread-safe 0.3.5 so that your build should run again if you add this dependency. <plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>1.5.2.1</version>
<dependencies>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj</artifactId>
<version>1.5.3.2</version>
</dependency>
</dependencies>
</plugin> |
what a timing I have just tried and it didin't worked:
here is my pom:
|
forgot to update maven plugin to 1.5.2.1, will try it now |
Also didn't heped:
|
Could this be related to this? Could you also try upgrading the JRuby dependency to 9.0.4.0? <plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>1.5.2.1</version>
<dependencies>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj</artifactId>
<version>1.5.3.2</version>
</dependency>
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby-complete</artifactId>
<version>9.0.4.0</version>
</dependency>
</dependencies>
</plugin> |
yes! just worked, thank you @robertpanzer! |
👍 |
Hi guys,
I am facing an issue with pdf backend which happens only on CI (jenkins - linux machine), here is the output:
Versions:
asciidoctor-maven-plugin: 1.5.2.1
asciidoctorJ-pdf: 1.5.0-alpha.10.1
Locally(windows machine) it woks.
full stacktrace is here:
Do I need to install something on CI machine?
The text was updated successfully, but these errors were encountered: