Re: problems using leiningen on Ubuntu 14.10 (and solved)

2018-04-15 Thread Dieter Van Eessen
Perhaps an extra sidenote: Installed leiningen 2.8 through package manager (debian), it installed openjdk-9 automatically. Had the same issue. Downgrading to openjdk-8 fixed the issue. Did this after i read about some bug on https://bugs.openjdk.java.net/browse/JDK-8189357 IMPORTANT: if you try

Re: Using Clojure for public facing system in a bank - code security scanning - any luck?

2018-04-15 Thread Dragan Djuric
Hi all. Very interesting thread! I guess that not many Clojure developers are in this situation, but I hope many more will be; that would mean that Clojure got the foot in the door of the enterprise. Gregg, I need a little clarification on the last thing you mentioned: Is a dependency treated a

Re: Using Clojure for public facing system in a bank - code security scanning - any luck?

2018-04-15 Thread Gregg Reynolds
On Sun, Apr 15, 2018, 4:59 AM Dragan Djuric wrote: > Hi all. Very interesting thread! I guess that not many Clojure developers > are in this situation, but I hope many more will be; that would mean that > Clojure got the foot in the door of the enterprise. > > Gregg, I need a little clarification

Re: Bazel as Clojure build tool

2018-04-15 Thread Gregg Reynolds
On Mon, Jan 29, 2018, 2:07 PM Nathan Fisher wrote: > ... > In order to get the speed that the build tool promises you need the > ability to efficiently parse the ABI of each file and only build its > dependents when the ABI has changed. > Can you please elaborate on this a bit? I've been using

Re: Bazel as Clojure build tool

2018-04-15 Thread Gregg Reynolds
On Tue, Jan 30, 2018, 6:07 PM Colin Fleming wrote: > Another tool that works well for polyglot JVM projects is Gradle. I use it > to build Cursive, which has Java, Kotlin and AOT'ed Clojure. I released a > mostly-unsupported plugin for it, and Andrew Oberstar and others have taken > it over and d

Re: Bazel as Clojure build tool

2018-04-15 Thread Mark Derricutt
On 16 Apr 2018, at 8:08, Gregg Reynolds wrote: > Can you please elaborate on this a bit? I've been using Bazel for a project > that involve C and Java, with cross-compiles, and ABI parsing has never come > up. It just works. That's because Bazel already handles that for you, I've not followed i