mirror of
https://github.com/plexusorg/toml4j.git
synced 2024-12-29 11:42:15 +00:00
Prepared README for release
This commit is contained in:
parent
14684e07d2
commit
b0e933fb28
1 changed files with 5 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
||||||
# toml4j
|
# toml4j
|
||||||
|
|
||||||
toml4j is a [TOML 0.3.1](https://github.com/toml-lang/toml/tree/v0.3.1) parser for Java that uses the [Parboiled](http://www.parboiled.org) PEG parser.
|
toml4j is a [TOML 0.3.1](https://github.com/toml-lang/toml/tree/v0.3.1) parser for Java.
|
||||||
|
|
||||||
[![Build Status](https://travis-ci.org/mwanji/toml4j.svg?branch=wip)](https://travis-ci.org/mwanji/toml4j) [![Coverage Status](https://img.shields.io/coveralls/mwanji/toml4j.svg)](https://coveralls.io/r/mwanji/toml4j?branch=wip)
|
[![Build Status](https://travis-ci.org/mwanji/toml4j.svg)](https://travis-ci.org/mwanji/toml4j) [![Coverage Status](https://img.shields.io/coveralls/mwanji/toml4j.svg)](https://coveralls.io/r/mwanji/toml4j)
|
||||||
|
|
||||||
For the bleeding-edge version integrating the latest specs, see the [work-in-progress branch](https://github.com/mwanji/toml4j/tree/wip).
|
For the bleeding-edge version integrating the latest specs, see the [work-in-progress branch](https://github.com/mwanji/toml4j/tree/wip).
|
||||||
|
|
||||||
|
@ -14,10 +14,12 @@ Add the following dependency to your POM (or equivalent for other dependency man
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.moandjiezana.toml</groupId>
|
<groupId>com.moandjiezana.toml</groupId>
|
||||||
<artifactId>toml4j</artifactId>
|
<artifactId>toml4j</artifactId>
|
||||||
<version>0.2.0</version>
|
<version>0.3.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
````
|
````
|
||||||
|
|
||||||
|
Requires Java 1.6.
|
||||||
|
|
||||||
## Quick start
|
## Quick start
|
||||||
|
|
||||||
````java
|
````java
|
||||||
|
|
Loading…
Reference in a new issue