hellonico / clj-opencv

0 stars 1 forks source link

deps.edn classifier syntax change #2

Open puredanger opened 5 years ago

puredanger commented 5 years ago

Hi, I wanted to let you know that the syntax for classifiers in deps.edn files has changed with the latest release (1.10.0.408). The classifier attribute is no longer used and instead the classifier is added to the lib name itself as groupId/artifactId$classifier.

In your template deps.edn, you might want to switch to the next syntax like:

opencv/opencv-native$osx_64 {:mvn/version "4.0.0-beta1"}

If you have any issues, feel free to file a ticket at https://dev.clojure.org/jira/browse/TDEPS for tools.deps.alpha.

hellonico commented 5 years ago

@puredanger

Thank you for the heads up. Tested and committed: https://github.com/hellonico/clj-opencv/commit/4caabbf8b30f1a75e7e6f957855f4a4fa820ad64

Nico