TEI API
This page describes TeiAPI - a java library for parsing NKJP-compatible TEI P5 files.
Usage
Without Maven
Download this jar and add it to your classpath.
Additional resources:
With Maven
In your pom.xml file:
- add repository information:
1 <repositories>
2 ...
3 <repository>
4 <id>zil-maven-repo</id>
5 <name>ZIL maven repository</name>
6 <url>http://maven.nlp.ipipan.waw.pl/content/repositories/snapshots</url>
7 </repository>
8 ...
9 </repositories>
- and dependency information:
1 <dependencies>
2 ...
3 <dependency>
4 <groupId>ipipan</groupId>
5 <artifactId>teiapi</artifactId>
6 <version>1.0-SNAPSHOT</version>
7 </dependency>
8 ...
9 </dependencies>