Locked History Actions

Diff for "TeiAPI"

Differences between revisions 15 and 19 (spanning 4 versions)
Revision 15 as of 2012-05-07 16:51:05
Size: 1371
Editor: MichalLenart
Comment:
Revision 19 as of 2015-07-10 13:12:43
Size: 1769
Editor: MateuszKopec
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:'''
[[MateuszKopec|Mateusz Kopeć]]<<BR>>
'''Authors:'''
[[MichalLenart|Michał Lenart]], [[MateuszKopec|Mateusz Kopeć]]<<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:
=== Without 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:
 * [[http://maven.nlp.ipipan.waw.pl/service/local/artifact/maven/redirect?r=snapshots&g=pl.waw.ipipan.zil.nkjp&a=teiapi&v=1.0-SNAPSHOT&e=jar|Jar file]]
 * [[http://maven.nlp.ipipan.waw.pl/service/local/artifact/maven/redirect?r=snapshots&g=pl.waw.ipipan.zil.nkjp&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=pl.waw.ipipan.zil.nkjp&a=teiapi&v=1.0-SNAPSHOT&e=jar&c=sources|Sources]]
Line 10: Line 19:
Add this jar to your classpath: http://chopin.ipipan.waw.pl/~mlenart/maven2/ipipan/teiapi/1.0-SNAPSHOT/teiapi-1.0-SNAPSHOT.jar

==== Additional resources: ====
 * Javadoc: http://chopin.ipipan.waw.pl/~mlenart/maven2/ipipan/teiapi/1.0-SNAPSHOT/teiapi-1.0-SNAPSHOT-javadoc.jar
 * Sources: http://chopin.ipipan.waw.pl/~mlenart/maven2/ipipan/teiapi/1.0-SNAPSHOT/teiapi-1.0-SNAPSHOT-sources.jar

=== With Maven ===
== Maven ==
Line 22: Line 24:
  ...
Line 24: Line 26:
    <id>zil-maven-repo</id>
    <name>ZIL maven repository</name>
    <url>http://maven.nlp.ipipan.waw.pl/content/repositories/snapshots</url>
  </repository>
Line 25: Line 31:
  </repository>

  <repository>
    <releases>
      <enabled>true</enabled>
      <updatePolicy>always</updatePolicy>
      <checksumPolicy>fail</checksumPolicy>
    </releases>
    <id>mlenart</id>
    <name>mlenart</name>
    <url>http://chopin.ipipan.waw.pl/~mlenart/maven2</url>
    <layout>default</layout>
  </repository>
Line 46: Line 38:
  <groupId>ipipan</groupId>   <groupId>pl.waw.ipipan.zil.nkjp</groupId>
Line 50: Line 42:
 ...
Line 53: Line 45:

More complicated real-life example file: [[attachment:pom.xml]]

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: Mateusz Kopeć
Authors: Michał Lenart, Mateusz Kopeć
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:

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>pl.waw.ipipan.zil.nkjp</groupId>
   5   <artifactId>teiapi</artifactId>
   6   <version>1.0-SNAPSHOT</version>
   7  </dependency>
   8  ...
   9 </dependencies>