diff --git a/README.md b/README.md index 1754615..9daae60 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,32 @@ toml4j is a [TOML](https://github.com/mojombo/toml) parser that uses the [Parboiled](http://www.parboiled.org) PEG parser. +## Installation + +toml4j is currently published in snapshot form. Add the following repository to your POM: + +````xml + + + sonatype-nexus-snapshots + https://oss.sonatype.org/content/groups/public/ + + true + + + +```` + +Add the following dependency: + +````xml + + com.moandjiezana.toml + toml4j + 1.0.0-SNAPSHOT + +```` + ## Usage ````java @@ -24,3 +50,9 @@ Long a = toml.getLong("a"); // returns 1, not 2 Long b = toml.getLong("b"); // returns 3 Long c = toml.getLong("c"); // returns null ```` + +## License + +toml4j is copyright of Moandji Ezana +toml4j is licensed under the [MIT License](http://www.opensource.org/licenses/mit-license.php) + diff --git a/pom.xml b/pom.xml index 3615c51..fd09094 100644 --- a/pom.xml +++ b/pom.xml @@ -11,6 +11,14 @@ 1.0.0-SNAPSHOT toml4j A parser for TOML + http://moandjiezana.com/toml/toml4j + + + moandji.ezana + Moandji Ezana + mwanji@gmail.com + + UTF-8 @@ -42,4 +50,49 @@ + + + The MIT License + http://www.opensource.org/licenses/mit-license.php + repo + + + + scm:git:git@github.com:mwanji/toml4j.git + scm:git:git@github.com:mwanji/toml4j.git + https://github.com/mwanji/toml4j + + + Github Issues + https://github.com/mwanji/toml4j/issues + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.4 + + + sign-artifacts + verify + + sign + + + + + + + + \ No newline at end of file