Extended Java WordNet Library Wiki
extJWNL is a Java library to handle dictionaries in WordNet format.
Brought to you by:
autayeu
extJWNL
supports Apache Maven and makes available three artifacts in the group net.sf.extjwnl:
To add extJWNL
to your project, add the following to your pom.xml
<project ... ... <dependency> <groupId>net.sf.extjwnl</groupId> <artifactId>extjwnl</artifactId> <version>1.6.10</version> </dependency> ... </project>
If you use database-backed dictionary stored in MySQL, add the following to your pom.xml
<project ... ... <dependency> <scope>runtime</scope> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.22</version> </dependency> ... </project>