Differences between revisions 1 and 28 (spanning 27 versions)
Size: 276
Comment:
|
← Revision 28 as of 2017-11-21 13:12:46 ⇥
Size: 1610
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
= TEI API = | = TEI API = This page offers the official [[http://creativecommons.org/licenses/by/3.0/deed.en_US|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. |
Line 4: | Line 5: |
This page describes TeiAPI - a java library for parsing NKJP-compatible TEI P5 files. | '''Contact person:''' [[BartlomiejNiton|Bartłomiej Nitoń]]<<BR>> '''Authors:''' [[MichalLenart|Michał Lenart]], [[MateuszKopec|Mateusz Kopeć]], [[BartlomiejNiton|Bartłomiej Nitoń]]<<BR>> '''License:''' CC BY v.3 |
Line 6: | Line 11: |
== Usage == | {{http://i.creativecommons.org/l/by/3.0/88x31.png}} |
Line 8: | Line 13: |
=== With Maven === | == Source code == 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.1&e=jar|1.1]], [[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]]). |
Line 10: | Line 16: |
In your @pom.xml@ file: * add repository information to @repositories@ element: === Without Maven === |
== Maven == In your {{{pom.xml}}} file: * add repository information: {{{#!highlight xml <repositories> ... <repository> <id>zil-maven-repo</id> <name>ZIL maven repository</name> <url>http://maven.nlp.ipipan.waw.pl/content/repositories/releases</url> </repository> ... </repositories> }}} * and dependency information: {{{#!highlight xml <dependencies> ... <dependency> <groupId>pl.waw.ipipan.zil.nkjp</groupId> <artifactId>teiapi</artifactId> <version>1.1</version> </dependency> ... </dependencies> }}} |
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
Source code
Source code of the library is available at git repository. You may also be interested in: jar file (1.1, 1.0).
Maven
In your pom.xml file:
- add repository information:
- and dependency information: