WordNetLib is a simple utility wrapper around the MIT WordNet interface.
It is based on the work by Dmitriy Dligach on behalf of the Apache Software Foundation (ASF) for Apache cTAKES.
Wordnet is a lexical database developed by Princeton.
The software stands under Apache 2 License and comes with NO WARRANTY
First, install the WordNet software on your *nix machine:
On Ubuntu/Debian:
sudo apt-get install wordnet
NOTE: If you're using a different *nix flavor, the current code expects the Wordnet installation to be at /usr/share/wordnet.
Then, include the dependency.
repositories {
maven { url "https://jitpack.io" }
}
dependencies {
compile 'com.github.yaraju:wordnetlib:1.0.0'
}
First add the repo at "https://jitpack.io"
<dependency>
<groupId>com.github.yaraju</groupId>
<artifactId>wordnetlib</artifactId>
<version>1.0.0</version>
</dependency>