TextGrid Java Clients¶
The TextGrid Java clients provide an easy API for the TextGrid repository services.
Usage¶
Include the textgrid-clients package in your maven project:
1 2 3 4 5 | <dependency>
<groupId>info.textgrid.middleware.clients</groupId>
<artifactId>textgrid-clients</artifactId>
<version>3.2.5</version>
</dependency>
|
You also need to use the dariah-de nexus repository to retrieve textgrid artefacts
1 2 3 4 5 6 7 8 9 10 11 12 13 | <repositories>
<repository>
<id>dariah.nexus.snapshots.http</id>
<name>DARIAH Nexus Managed Snapshot Repository</name>
<url>https://ci.de.dariah.eu/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
|