#47, #60 - Added RelProvider implementation pluralizing using the Evo Inflector algorithm.

See http://www.csse.monash.edu.au/~damian/papers/HTML/Plurals.html for details of the algorithm.
This commit is contained in:
Oliver Gierke
2013-04-15 23:18:29 +02:00
parent 254339c3b2
commit 6acf17e730
5 changed files with 102 additions and 1 deletions

View File

@@ -66,6 +66,7 @@
<jsonpath.version>0.8.1</jsonpath.version>
<minidevjson.version>1.1.1</minidevjson.version>
<slf4j.version>1.7.2</slf4j.version>
<evo.version>1.0.1</evo.version>
<bundlor.failOnWarnings>true</bundlor.failOnWarnings>
</properties>
@@ -150,6 +151,13 @@
<version>${jsonpath.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.atteo</groupId>
<artifactId>evo-inflector</artifactId>
<version>${evo.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>