Re: Component and company with Spring?

2017-04-14 Thread henrik42
I did the opposite - build Spring beans with clojure - https://github.com/henrik42/spring-break#defining-clojure-based-spring-beans HTH Henrik -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.

Re: ANN: ClojureScript 1.9.518, `async` issue resolved

2017-04-14 Thread David Nolen
I just cut 1.9.521. The only change was to fix a regression to :foreign-libs when there are multiple entries which use the same :file. David On Wed, Apr 12, 2017 at 4:52 PM, David Nolen wrote: > ClojureScript, the Clojure compiler that emits JavaScript source code. > > README and source code: h

Property file IO failing Incorrect data type conversion

2017-04-14 Thread manas . marthi
Hi I am trying to compare two eclipse preferences files with a piece of code I picked from internet Some of the values in the file are version numbers and clojure is throwing number format error. How to force clojure read the properties as strings. CompilerException java.lang.NumberForm

Re: Property file IO failing Incorrect data type conversion

2017-04-14 Thread Sean Corfield
Trying to convert arbitrary strings to Clojure objects via read-string is rather dangerous – read-string can execute arbitrary code (if the string happens to look like a tagged literal). Aside from that, read-string is only going to read the first expression from the string: