summaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2012-12-10 20:42:01 -0700
committerRocky Madden <git@rockymadden.com>2012-12-10 20:42:01 -0700
commit9cafc287cce46ddb5272b6568fcea566729f9b01 (patch)
treed58c74f8f6aa2fee6cac2488c350bcd41fe01b38 /readme.md
parent41e3bf79e610f0e6c99ebeabd60d9af00fdc8aaa (diff)
downloadstringmetric-9cafc287cce46ddb5272b6568fcea566729f9b01.tar.gz
stringmetric-9cafc287cce46ddb5272b6568fcea566729f9b01.tar.bz2
stringmetric-9cafc287cce46ddb5272b6568fcea566729f9b01.zip
Moved depending and building sections down.
Diffstat (limited to 'readme.md')
-rwxr-xr-xreadme.md36
1 files changed, 18 insertions, 18 deletions
diff --git a/readme.md b/readme.md
index b59f3a4..4886412 100755
--- a/readme.md
+++ b/readme.md
@@ -20,24 +20,6 @@ A small library of string metrics and phonetic algorithms. Each has a command li
* __[Soundex](http://en.wikipedia.org/wiki/Soundex)__ (Phonetic metric and algorithm)
* __Weighted Levenshtein__ (Similarity metric)
-## Depending on the API (via the [Maven Central Repository](http://search.maven.org/))
-* __groupId__: org.hashtree.stringmetric
-* __artifactId__: stringmetric-core
-
-## Depending on the CLI (via the [Maven Central Repository](http://search.maven.org/))
-* __groupId__: org.hashtree.stringmetric
-* __artifactId__: stringmetric-cli
-
-## Building the API (via Gradle)
-```shell
-gradle :stringmetric-core:jar
-```
-
-## Building the CLI (via Gradle)
-```shell
-gradle :stringmetric-cli:tar
-```
-
## Using the API
Basic example with no filtering.
```scala
@@ -106,6 +88,24 @@ Get the phonetic representation of "abc" using the Metaphone phonetic algorithm.
metaphoneAlgorithm abc
```
+## Depending on the API (via the [Maven Central Repository](http://search.maven.org/))
+* __groupId__: org.hashtree.stringmetric
+* __artifactId__: stringmetric-core
+
+## Depending on the CLI (via the [Maven Central Repository](http://search.maven.org/))
+* __groupId__: org.hashtree.stringmetric
+* __artifactId__: stringmetric-cli
+
+## Building the API (via Gradle)
+```shell
+gradle :stringmetric-core:jar
+```
+
+## Building the CLI (via Gradle)
+```shell
+gradle :stringmetric-cli:tar
+```
+
## Requirements
* Scala 2.9.x
* Gradle 1.x