Skip to content

Release 1.12.88

Choose a tag to compare

@jlangch jlangch released this 06 Apr 06:28
· 524 commits to master since this release

[1.12.88] - 2026-04-06

Bugs

  • Fixed the problem of not being able to run Maven from the :maven module.

    Added an additional Maven example to demo the installation of artifacts with transitive dependencies:

    (do
      (load-module :maven)
      (load-module :installer)
      (-> (maven/dependencies [ "com.openai:openai-java:4.30.0" 
                                "org.apache.poi:poi:5.4.0"
                                "org.apache.poi:poi-ooxml:5.4.0"
                                "org.apache.poi:poi-ooxml-full:5.4.0" ] 
                              :scope :runtime 
                              :format :list
                              :print false)
          (installer/install :dir (repl/libs-dir)
                             :silent false)))