Skip to content

Latest commit

 

History

History

docs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

WARNING: WORK IN PROGRESS - THIS IS ONLY A TEMPLATE FOR THE DOCUMENTATION.
RELEASE DOCS ARE ON THE PROJECT WEBSITE

This release allows to perform importing of XML lexical resources, with some validation for checking namespaces.

Getting started

If you use Maven as build system, put in the dependencies section of your pom.xml:

    <dependency>
        <groupId>eu.kidf</groupId>
        <artifactId>diversicon-core</artifactId>
        <version>${project.version}</version>
    </dependency>

If you want to use Wordnet 3.1, add this additional dependency:

	<dependency>
		<groupId>eu.kidf</groupId>
		<artifactId>div-wn31-h2db</artifactId>
		<version>${project.version}</version>		
	</dependency>

In case updates are available, version numbers follow semantic versioning rules.

Example Usage

To create a database with Wordnet 3.1 and then import the example resource Smartphones, you can look at the example TestApp1

For more usage examples, you can have a look at DiverCLI project, in particular the various Commands

Logging

Diversicon uses SLF4J logging system. Library has only slf4j-api as dependency. For using logging during development / testing, see the wiki.