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

**Initial debugging steps** Before creating a report, _especially_ around exceptions being thrown when running Leiningen, please check if the error still occurs after: - [x] Updating to using the latest...

bug
usability

In #734, lein added warning on dependency version ranges. This makes sense in the general case. However I noticed when running https://github.com/capitalone/cqrs-manager-for-distributed-reactive-services, that I got the following warning: ``` WARNING!!!...

bug
usability
investigate

This is just a proposal and food for thought ahead of the Conj. The hardest part of this is making the schema correct. The way this works is it only...

`lein check` can hang forever in presence of (relatively) well-behaved Clojure code: ```clj (defonce runner (future (while (not (-> (Thread/currentThread) .isInterrupted)) ,,, (Thread/sleep 50)))) ``` Accordingly I believe `check.clj` should...

Enhancement

Related https://github.com/technomancy/leiningen/issues/2695 Related https://github.com/technomancy/leiningen/pull/2696 This PR attempts to enhance `eval-in-project` with the ability to preserve metadata `:tag` forms in a backwards-compatible way. Please consider it a proof-of-concept at the moment,...

With Leiningen 2.4.2 (Java 1.8.0_05 64-bit), from a cygwin shell, executing "$ lein repl" spawns a new bash process, a bash subprocess, and two java subprocesses. ``` bash.exe (original) bash.exe...

Windows

**Initial debugging steps** Before creating a report, _especially_ around exceptions being thrown when running Leiningen, please check if the error still occurs after: - [x] Updating to using the latest...

bug

When defining scopes for dependencies in malformed way the produced error messages are not very helpful, at least for newbies. Examples: ```clojure [some/dep "1.2.3" :provided] ;=> "Provided artifact is missing...

usability

Given the behaviour observed below, I'm assuming leningen is obtaining the user's home from getent or similar path instead of relying (or even considering) ${HOME}. Using a docker container with...

upstream

Leiningen is installed to C:\Users\Username.lein. I create profiles.clj and put there the following content: ``` clj {:user { :java-cmd "C:\\Program Files\\Java\\jdk1.8.0_31\\bin\\java.exe" :local-repo "D:\\.m2\\repository" :plugins [ ] } } ``` But...

Windows