Locked History Actions

Diff for "TeiAPI"

Differences between revisions 3 and 16 (spanning 13 versions)
Revision 3 as of 2012-05-07 16:44:10
Size: 281
Editor: MichalLenart
Comment:
Revision 16 as of 2015-07-09 10:13:14
Size: 1237
Editor: MateuszKopec
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
=== Without Maven ===

Download [[http://maven.nlp.ipipan.waw.pl/service/local/artifact/maven/redirect?r=snapshots&g=ipipan&a=teiapi&v=1.0-SNAPSHOT&e=jar|this jar]] and add it to your classpath.

==== Additional resources: ====
 * [[http://maven.nlp.ipipan.waw.pl/service/local/artifact/maven/redirect?r=snapshots&g=ipipan&a=teiapi&v=1.0-SNAPSHOT&e=jar&c=javadoc|Javadoc]]
 * [[http://maven.nlp.ipipan.waw.pl/service/local/artifact/maven/redirect?r=snapshots&g=ipipan&a=teiapi&v=1.0-SNAPSHOT&e=jar&c=sources|Sources]]
Line 13: Line 21:
<repositories>
  ...
  <repository>
    <id>zil-maven-repo</id>
    <name>ZIL maven repository</name>
    <url>http://maven.nlp.ipipan.waw.pl/content/repositories/snapshots</url>
  </repository>
  ...
</repositories>
Line 15: Line 31:


=== Without Maven ===
 * and dependency information:
{{{#!highlight xml
<dependencies>
 ...
 <dependency>
  <groupId>ipipan</groupId>
  <artifactId>teiapi</artifactId>
  <version>1.0-SNAPSHOT</version>
 </dependency>
 ...
</dependencies>
}}}

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>