https://github.com/sunng87/lein-bootclasspath-deps
A Leiningen plugin to manage your bootclasspath.
https://github.com/sunng87/lein-bootclasspath-deps
Last synced: 6 months ago
JSON representation
A Leiningen plugin to manage your bootclasspath.
- Host: GitHub
- URL: https://github.com/sunng87/lein-bootclasspath-deps
- Owner: sunng87
- License: epl-1.0
- Created: 2015-07-18T08:01:39.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-11-21T16:05:18.000Z (about 8 years ago)
- Last Synced: 2025-07-09T07:03:39.788Z (6 months ago)
- Language: Clojure
- Size: 14.6 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lein-bootclasspath-deps
A Leiningen plugin to manage your bootclasspath.
## Usage
Use this for project-level plugins:
Put [](http://clojars.org/info.sunng/lein-bootclasspath-deps) into the `:plugins`
vector of your project.clj.
Specify jars to loaded from bootclasspath in `:boot-dependencies`, like:
```clojure
:boot-dependencies [[org.mortbay.jetty.alpn/alpn-boot "8.1.3.v20150130"]]
```
By default, the jar will be **appended** to bootclasspath, to
prepend a jar, add an option `:prepend true`:
```clojure
:boot-dependencies [[org.mortbay.jetty.alpn/alpn-boot "8.1.3.v20150130" :prepend true]]
```
## License
Copyright © 2015-2017 Ning Sun
Distributed under the Eclipse Public License either version 1.0 or (at
your option) any later version.