I'm happy to report that edn-java 0.4.0 is now available on Maven Central. :)
(Please forgive my enthusiasm Posseites, this is the first time I've actually published an OSS library to Maven central.) # What is edn-java? Edn-java is a Java library for reading and writing edn data. It has no dependencies other than Java 1.6.x or later. A more detailed description, including usage examples is available here: http://edn-java.bpsm.us # What is edn? Edn is an extensible data notation used used by Datomic and other applications as a data transfer format. It supports a rich set of built-in elements, and the definition of extension elements in terms of the others. edn is a system for the conveyance of values. It is not a type system, and has no schemas. Edn is suitable for streaming and interactive applications since there is no enclosing element at the top level. (Paraphrased form https://github.com/edn-format/edn) # Where can I get edn-java? Edn is licensed under the Eclipse Public License 1.0. Sources are on github: https://github.com/bpsm/edn-java Patches & issues welcomed! Maven coordinates are: <dependency> <groupId>us.bpsm</groupId> <artifactId>edn-java</artifactId> <version>0.4.0</version> </dependency> # Caveats The Parser seems pretty solid (for 0.4.0). I use it in production. I don't anticipate breaking API changes there. Printing support is not as far along as parsing. It appears to work correctly, but does not pretty print. Printing APIs may change. -- You received this message because you are subscribed to the Google Groups "Java Posse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/javaposse?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
