I'm trying to run this project with this deps.edn
https://github.com/JetBrains/skija/blob/master/examples/clojure/deps.edn but when I run clj
in the directory i get
Error building classpath. Could not find artifact org.jetbrains.skija:skija-native:jar:0.0.0-SNAPSHOT in central (<https://repo1.maven.org/maven2/>)
Anyone know why it's not respecting the :mvn/repos
?org.jetbrains.skija/skija-macos {:mvn/version "0.6.43"}
there is no such package available in that repo try to use this instructions https://github.com/JetBrains/skija#using-skija
replace this
org.jetbrains.skija/skija-native {:mvn/version "0.0.0-SNAPSHOT"}
with that
org.jetbrains.skija/skija-%platform% {:mvn/version "0.6.41"}
do not forget to substitute %platform% with yours
That was it, thank you !