Re: Override deps

2023-02-13 Thread 'Alex Miller' via Clojure
There may be other things wrong, but hard to tell without more context of your deps.edn. On Mon, Feb 13, 2023 at 7:02 PM Alex Miller wrote: > It looks like you misspelled ":override-deps" (two r's) ? > > On Mon, Feb 13, 2023 at 5:50 PM 'Tête à-tête' via Clojure < > clojure@googlegroups.com>

Re: Override deps

2023-02-13 Thread 'Alex Miller' via Clojure
It looks like you misspelled ":override-deps" (two r's) ? On Mon, Feb 13, 2023 at 5:50 PM 'Tête à-tête' via Clojure < clojure@googlegroups.com> wrote: > :overide-deps > {edu.stanford.nlp/stanford-corenlp {:mvn/version "4.5.2"}} > > I've tried preventing corenlp 4.4.0 and, here, I'm insisting

Re: Override deps

2023-02-13 Thread 'Alex Miller' via Clojure
Can you share an example deps.edn or some more information? Also, what Clojure CLI version are you using `clj --version`. Alex On Monday, February 13, 2023 at 7:14:20 AM UTC-6 deliver...@googlemail.com wrote: > My laptop is struggling for space and, I would like to override a > dependency,

Re: ANN: just-maven-clojure-archetype 0.3-RELEASE

2022-11-20 Thread 'Alex Miller' via Clojure
It still builds all the Clojure contrib projects. :) On Saturday, November 19, 2022 at 10:54:18 PM UTC-6 ma...@talios.com wrote: > Nice, > > Almost surprised to not see my clojure-maven-plugin pop in there - it’s > always a surprise finding folk still using it. > > -- > "Great artists are

Re: Unnecessary boxing of return from set!

2022-05-15 Thread 'Alex Miller' via Clojure
I don't think that void type hint is going to do anything there. The deftype impl of apply here will (has to by Java requirements) return void here. There is a gap here I think where the return gets needlessly boxed. You might try just putting a nil expr after the set! as a workaround. In any

Re: How to suppress warnings about namespace replacements?

2022-02-01 Thread 'Alex Miller' via Clojure
Most likely a newer version of this library exists that addresses these warnings. In this particular case, the issue was fixed in June 2016 as of tools.analyzer version 0.6.9. In a namespace with this issue, you can address like this: (ns whatever (:refer-clojure :exclude [boolean?])) But

Re: deps.edn dependency whose name starts with a number

2021-05-15 Thread 'Alex Miller' via Clojure
I don't think there is any workaround for this, it's the first time I've seen someone run into this. I'll log it and think about a solution. On Saturday, May 15, 2021 at 6:22:41 PM UTC-5 zk wrote: > Is there a way to specify a dependency whose name starts with a number? > For example: > > ```

State of Clojure 2021 survey results

2021-04-06 Thread 'Alex Miller' via Clojure
Read all about it here! https://clojure.org/news/2021/04/06/state-of-clojure-2021 -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please

State of Clojure 2021 survey

2021-01-18 Thread 'Alex Miller' via Clojure
It's that time of year again! Please complete the State of Clojure 2021 survey, an important tool for tracking our community over the last decade. https://www.surveymonkey.com/r/clojure2021 Thanks! Alex -- You received this message because you are subscribed to the Google Groups "Clojure"

Re: Documentation of clojure.string/split is confusing

2021-01-12 Thread 'Alex Miller' via Clojure
The best place to ask questions like this is at https://ask.clojure.org, which is the official forum to file requests/bug reports (and get turned into tickets after triage there). It turns out you are not the first to point this out and it has already been filed at

Re: Classpath bug re Clojure 1.10.1.645 when using Figwheel.Main

2020-09-14 Thread 'Alex Miller' via Clojure
Just FYI, we have a plan to address this and it should be in the next stable version. > On Sep 14, 2020, at 1:00 AM, 'bed...@yahoo.com' via Clojure > wrote: > >  > I couldn't agree more. > > It really boils down to the simple fact that class loading in the JVM - for > the standard

Re: Clojure tools-deps Docker image versions & stable releases

2020-08-13 Thread 'Alex Miller' via Clojure
On Thursday, August 13, 2020 at 10:32:45 AM UTC-5 cap10...@gmail.com wrote: > I was recently made aware in a separate thread in this group* that, until > very recently, the tools-deps versions that were being installed via the > main Homebrew tap's clojure installer included some versions

Re: Classpath bug re Clojure 1.10.1.645 when using Figwheel.Main

2020-08-11 Thread 'Alex Miller' via Clojure
FYI, I've been working with the homebrew team today and homebrew-core now points to the latest stable clojure tools version and will track that automatically going forward. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group,

Re: Classpath bug re Clojure 1.10.1.645 when using Figwheel.Main

2020-08-11 Thread 'Alex Miller' via Clojure
On Tue, Aug 11, 2020 at 6:41 PM 'bed...@yahoo.com' via Clojure < clojure@googlegroups.com> wrote: > Just 2 quick points before I go back to migrate to shadow-cljs & leiningen > ;) > > "just does not seem well defined " > This is not a line of argument you want to pursue when we are talking >

Re: Classpath bug re Clojure 1.10.1.645 when using Figwheel.Main

2020-08-11 Thread 'Alex Miller' via Clojure
remains that it is > finding some other `index.html`, which also points to an incorrect JS > output file. > > Alan > > > > > On Tue, Aug 11, 2020 at 2:15 PM 'Alex Miller' via Clojure < > clojure@googlegroups.com> wrote: > >> >> On Tue,

Re: Classpath bug re Clojure 1.10.1.645 when using Figwheel.Main

2020-08-11 Thread 'Alex Miller' via Clojure
On Tue, Aug 11, 2020 at 3:01 PM 'bed...@yahoo.com' via Clojure < clojure@googlegroups.com> wrote: > Here's some maven-specific discussion: > https://stackoverflow.com/questions/793054/maven-classpath-order-issue. > They have a defined order since 2.0.9. and declaration order is considered > for

Re: Classpath bug re Clojure 1.10.1.645 when using Figwheel.Main

2020-08-11 Thread 'Alex Miller' via Clojure
Just to beat the horse... On Tue, Aug 11, 2020 at 1:05 PM 'bed...@yahoo.com' via Clojure < clojure@googlegroups.com> wrote: > Changing the order of classpath entry and not having paths be at the > beginning of the CLASSPATH will break existing code that uses `(io/resource > ...)` to load

Re: Classpath bug re Clojure 1.10.1.645 when using Figwheel.Main

2020-08-10 Thread 'Alex Miller' via Clojure
Bunch of things here... Clojure maintains its own brew tap and a "stable" release that you can obtain with `brew install clojure/tools/clojure` (the brew conventions automatically find the prior repo based on that). That tap also includes prerelease unstable versions that can be obtained with

Re: DEPRECATED: Libs must be qualified, change cljfmt => cljfmt/cljfmt (~/.clojure/deps.edn)

2020-08-06 Thread 'Alex Miller' via Clojure
Hi, couple things here... First, for information on this change you can see the section at the very end of this blog: https://insideclojure.org/2020/07/28/clj-exec/ - probably best to read that and then I can answer any follow-ups as I tried to explain there. Second, this is only in a preview

Re: Optimizaton for finding the next key in a sorted-map

2020-05-25 Thread 'Alex Miller' via Clojure
Hi, there is no such optimization and that's not really feasible in the sorted-map impl. However there are other sorted map data structures like https://github.com/clojure/data.avl which have facilities in this area. On Monday, May 25, 2020 at 4:47:58 PM UTC-5, Harmon Nine wrote: > > Is there

Re: HP Fortify Security Scanner and Clojure

2020-04-02 Thread 'Alex Miller' via Clojure
Most Clojure classes cannot be decompiled to Java (locals clearing is all over it and has no Java equivalent, just as one problem, there are others). Some people have tried this with Fortify and other bytecode oriented scanners but I don't know of anyone that's gotten any results that were

Re: Emacs-cider

2020-03-13 Thread 'Alex Miller' via Clojure
It would probably help to include any error information for someone to learn more about the problem. On Friday, March 13, 2020 at 1:54:40 PM UTC-5, Duke wrote: > > The emacs-cider combo chokes with an error to the effect that cider-nrepl > could not be loaded. > I'm on a Win10 box. Would

Re: [ANN] Clojure 1.10.2-alpha1

2020-03-13 Thread 'Alex Miller' via Clojure
Generally, you don't explicitly download it at all - you should just change your dependency in your project.clj to use [org.clojure/clojure "1.10.2-alpha1"] and then leiningen will download it for you into your local Maven repository (usually in ~/.m2/repository). On Friday, March 13, 2020

Re: Clj on Win: Error building classpath

2020-03-10 Thread 'Alex Miller' via Clojure
Hi Daniel, sorry you're having troubles. This error typically occurs if the artifact metadata can't be downloaded from the central Maven repository. Any chance you have a network proxy or something like that? The file it should be trying to download is this one:

Re: Register to the International Clojure Data Science Meetup in Berlin on 27th of February

2020-02-25 Thread 'Alex Miller' via Clojure
I don't know if it makes sense, but might be worth updating the clojure.org event page at https://clojure.org/events/2020/clojured (PR to https://github.com/clojure/clojure-site/blob/master/content/events/2020/clojured.adoc). On Tuesday, December 17, 2019 at 8:59:30 AM UTC-6, Sami Kallinen