This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-12-18
Channels
- # adventofcode (40)
- # aleph (8)
- # announcements (2)
- # beginners (27)
- # calva (3)
- # cider (3)
- # clj-kondo (21)
- # cljsrn (9)
- # clojure (122)
- # clojure-europe (38)
- # clojure-france (93)
- # clojure-nl (2)
- # clojure-spec (1)
- # clojure-uk (32)
- # clojuredesign-podcast (1)
- # clojurescript (10)
- # community-development (11)
- # conjure (14)
- # cursive (11)
- # datalog (7)
- # depstar (21)
- # emacs (31)
- # fulcro (85)
- # google-cloud (1)
- # graalvm (1)
- # graphql (7)
- # jobs-discuss (3)
- # joker (1)
- # kaocha (14)
- # pathom (2)
- # re-frame (1)
- # reagent (1)
- # reitit (6)
- # reveal (50)
- # shadow-cljs (64)
- # spacemacs (8)
- # tools-deps (5)
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 ( )
Anyone know why it's not respecting the :mvn/repos
?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
org.jetbrains.skija/skija-macos {:mvn/version "0.6.43"}