Find where clojure -contrib libs moved to

Given that with a future version of clojure it is not recommended to use clojure -contrib as a separate element - how do you find where things have moved.

For example, this utility: http://richhickey.github.com/clojure-contrib/javadoc.browse-api.html#clojure.contrib.javadoc.browse/open-url-in-browser at hand - but where did it go new scheme?

+6
source share
2 answers

Not all of the old "monolithic" contribution was transferred to the new "modular" contribution. Some of them can never be carried over. It is up to the community to carry bits of the library that they find useful.

You can try contacting the original maintainer to find out if they plan to move to the new library.

See http://dev.clojure.org/display/doc/Clojure+Contrib for a review of the new contributor and where it all ended.

+6
source

Currently, an overview of migration status has been improved:

http://dev.clojure.org/display/design/Where+Did+Clojure.Contrib+Go

+1
source

Source: https://habr.com/ru/post/896687/


All Articles