Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 848 Bytes

README.md

File metadata and controls

35 lines (28 loc) · 848 Bytes

About

extJWNL WordNet 3.0 Data contains dictionary files from Unix version of WordNet 3.0 augmented with an extJWNL configuration file for an extremely easy use of WordNet-like semantic resources in your project.

Getting started

In the pom.xml:

<dependency>
    <groupId>net.sf.extjwnl</groupId>
    <artifactId>extjwnl</artifactId>
    <version>1.8.0</version>
</dependency>
<dependency>
    <groupId>net.sf.extjwnl</groupId>
    <artifactId>extjwnl-data-wn30</artifactId>
    <version>1.2</version>
</dependency>

In the code:

Dictionary d = Dictionary.getDefaultResourceInstance();

Notes

On checkout pay attention to your core.autocrlf git setting. The data files have unix line endings and they should remain so. The recommended way is to set core.autocrlf to false:

git config core.autocrlf false