leiningen icon indicating copy to clipboard operation
leiningen copied to clipboard

Moved to Codeberg; this is a convenience mirror

Results 103 leiningen issues
Sort by recently updated
recently updated
newest added

Hi! Say I place a dependency on `[org.webjars.npm/github-com-bevacqua-dragula "3.7.2"]`. Then the`:pedantic? :ranges` option will give me the following warning: ``` WARNING!!! version ranges found for: [org.webjars.npm/github-com-bevacqua-dragula "3.7.2"] -> [org.webjars.npm/contra "[1.9.4,1.9.4]"]...

Enhancement

I am working in a project where I've native dependencies managed by lein (i.e rxtx) and native dependencies managed externally (Matlab). Documentation says that one should use `jvm-opts` to set...

bug

Leiningen includes `project.clj` (under root as well as under `META-INF/leiningen/`) in the generated JAR files. Unfortunately, that file cannot be parsed by a program without using Leiningen-core itself. It would...

Enhancement

Currently Leiningen uses two different values for home directory: * `HOME` environment variable for `~/.lein` * `user.home` JVM system property for `~/.m2` To move home (if home directory is read-only,...

upstream

**Initial debugging steps** - [x] Updating to using the latest released version of Leiningen (`lein upgrade`). - [x] Moving your `~/.lein/profiles.clj` (if present) out of the way. This contains third-party...

Enhancement

Is it possible to set the multi-release attribute to true when creating uberjars? [uberdeps](https://github.com/tonsky/uberdeps) Appears to have this feature but I did not find anything related on lein. I'm having...

Enhancement

I get the following warnings on most `lein` tasks: ``` Warning: implicit hook found: lein-protoc.plugin/hooks Hooks are deprecated and will be removed in a future version. Warning: implicit hook found:...

Enhancement

Hi, I can't get the `:greeting-fn` to work on `lein repl :connect`. Inspecting the source, it seems to me that that option is ignored for that specific `if` branch: https://github.com/technomancy/leiningen/blob/3f68a764da459ebbb4dc65a55a13e84c030b97ea/src/leiningen/repl.clj#L378-L383...

bug

Profiles both configured in `:default` and `:uberjar` are not packaged into uberjar. 1. Given new project with custom profile `:deps` with its own dependencies Scenario A: the `:deps` profile is...

bug

**Describe the bug** Managed dependencies with :exclusions are not correctly processed for lein deps :tree. **To Reproduce** 1. Create a project file like this: ``` (defproject foo "0.1.0-SNAPSHOT" :managed-dependencies [[org.clojure/clojure...

upstream