Locked History Actions

Diff for "TeiAPI"

Differences between revisions 22 and 27 (spanning 5 versions)
Revision 22 as of 2016-10-13 20:47:45
Size: 1421
Editor: MateuszKopec
Comment:
Revision 27 as of 2017-11-21 12:51:33
Size: 1475
Comment:
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
[[MateuszKopec|Mateusz Kopeć]]<<BR>> [[BartlomiejNiton|Bartłomiej Nitoń]]<<BR>>
Line 8: Line 8:
[[MichalLenart|Michał Lenart]], [[MateuszKopec|Mateusz Kopeć]]<<BR>> [[MichalLenart|Michał Lenart]], [[MateuszKopec|Mateusz Kopeć]], [[BartlomiejNiton|Bartłomiej Nitoń]]<<BR>>
Line 14: Line 14:
Source code of the library is available at [[http://git.nlp.ipipan.waw.pl/nkjp/teiapi|git repository]]. You may also be interested in: [[http://maven.nlp.ipipan.waw.pl/service/local/artifact/maven/redirect?r=releases&g=pl.waw.ipipan.zil.nkjp&a=teiapi&v=1.0&e=jar|Jar file]] Source code of the library is available at [[http://git.nlp.ipipan.waw.pl/nkjp/teiapi|git repository]]. You may also be interested in: jar file ([[http://maven.nlp.ipipan.waw.pl/service/local/artifact/maven/redirect?r=releases&g=pl.waw.ipipan.zil.nkjp&a=teiapi&v=1.0&e=jar|1.0]]).

TEI API

This page offers the official Creative Commons Attribution 3.0 Unported License release of the TeiAPI - a java library for parsing NKJP-compatible TEI P5 files. By downloading the package you accept the conditions of that licence.

Contact person: Bartłomiej Nitoń
Authors: Michał Lenart, Mateusz Kopeć, Bartłomiej Nitoń
License: CC BY v.3

http://i.creativecommons.org/l/by/3.0/88x31.png

Source code

Source code of the library is available at git repository. You may also be interested in: jar file (1.0).

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/releases</url>
   7   </repository>
   8   ...
   9 </repositories>
  • and dependency information:

   1 <dependencies>
   2  ...
   3  <dependency>
   4   <groupId>pl.waw.ipipan.zil.nkjp</groupId>
   5   <artifactId>teiapi</artifactId>
   6   <version>1.0</version>
   7  </dependency>
   8  ...
   9 </dependencies>