I'm happy to report that edn-java is now available on 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-java 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 "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to