tools-deps

Discuss tools.deps.alpha, tools.build, and the clj/clojure command-line scripts! See also #depstar #clj-new
2020-12-18T16:54:00.490200Z

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 ?

mike_ananev 2020-12-21T21:12:31.496200Z

org.jetbrains.skija/skija-macos          {:mvn/version "0.6.43"}

2020-12-18T17:02:51.490400Z

there is no such package available in that repo try to use this instructions https://github.com/JetBrains/skija#using-skija

2020-12-18T17:04:23.490700Z

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

2020-12-18T17:06:13.490900Z

That was it, thank you !