Liking cljdoc? Tell your friends :D
Clojure only.

hf.depstar.jar


-mainclj

(-main & args)
source

runclj

(run options)

Legacy entry point for jar invocations.

Can be used with clojure -X:

In :aliases:

      :depstar {:extra-deps {seancorfield/depstar {:mvn/version ...}}}
      :jar     {:fn hf.depstar.jar/run
                :args {}}

Then run:

      clojure -R:depstar -X:jar :jar MyProject.jar

If the destination JAR file is fixed, it could be added to :args in deps.edn:

      :depstar {:extra-deps {seancorfield/depstar {:mvn/version ...}}}
      :jar     {:fn hf.depstar.jar/run
                :args {:jar MyProject.jar}}

:jar can be specified as a symbol or a string.

Legacy entry point for jar invocations.

  Can be used with `clojure -X`:

  In `:aliases`:
```clojure
      :depstar {:extra-deps {seancorfield/depstar {:mvn/version ...}}}
      :jar     {:fn hf.depstar.jar/run
                :args {}}
```
  Then run:
```
      clojure -R:depstar -X:jar :jar MyProject.jar
```
  If the destination JAR file is fixed, it could be added to `:args` in
  `deps.edn`:
```clojure
      :depstar {:extra-deps {seancorfield/depstar {:mvn/version ...}}}
      :jar     {:fn hf.depstar.jar/run
                :args {:jar MyProject.jar}}
```
  `:jar` can be specified as a symbol or a string.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close