mirror of
https://github.com/penpot/penpot.git
synced 2025-01-08 07:50:43 -05:00
⬆️ Update im4java version to our internal fork version
It fixes the v7 compatibility issues. Now, adding the -Dim4java.useV7=true property to the java command when executing the penpot backend bundle it switches to use the `magick` (ImageMagick v7 CLI) instead of `convert` and `identify`.
This commit is contained in:
parent
69cb626cab
commit
9ae5528355
2 changed files with 6 additions and 1 deletions
|
@ -34,7 +34,9 @@
|
||||||
buddy/buddy-sign {:mvn/version "3.4.333"}
|
buddy/buddy-sign {:mvn/version "3.4.333"}
|
||||||
|
|
||||||
org.jsoup/jsoup {:mvn/version "1.15.1"}
|
org.jsoup/jsoup {:mvn/version "1.15.1"}
|
||||||
org.im4java/im4java {:mvn/version "1.4.0"}
|
org.im4java/im4java {:git/tag "1.4.0-penpot-2" :git/sha "e2b3e16"
|
||||||
|
:git/url "https://github.com/penpot/im4java"}
|
||||||
|
|
||||||
org.lz4/lz4-java {:mvn/version "1.8.0"}
|
org.lz4/lz4-java {:mvn/version "1.8.0"}
|
||||||
|
|
||||||
org.clojars.pntblnk/clj-ldap {:mvn/version "0.0.17"}
|
org.clojars.pntblnk/clj-ldap {:mvn/version "0.0.17"}
|
||||||
|
|
|
@ -40,6 +40,9 @@ export OPTIONS="
|
||||||
-J-XX:+UnlockDiagnosticVMOptions \
|
-J-XX:+UnlockDiagnosticVMOptions \
|
||||||
-J-XX:+DebugNonSafepoints";
|
-J-XX:+DebugNonSafepoints";
|
||||||
|
|
||||||
|
# Uncomment for use the ImageMagick v7.x
|
||||||
|
# export OPTIONS="-J-Dim4java.useV7=true $OPTIONS";
|
||||||
|
|
||||||
export OPTIONS_EVAL="nil"
|
export OPTIONS_EVAL="nil"
|
||||||
# export OPTIONS_EVAL="(set! *warn-on-reflection* true)"
|
# export OPTIONS_EVAL="(set! *warn-on-reflection* true)"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue