Differences between revisions 4 and 15 (spanning 11 versions)
Size: 675
Comment:
|
Size: 1371
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 8: | Line 8: |
=== Without Maven === 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 |
|
Line 14: | Line 22: |
Line 17: | Line 26: |
Line 28: | Line 38: |
Line 30: | Line 41: |
* and dependency information: {{{#!highlight xml <dependencies> ... <dependency> <groupId>ipipan</groupId> <artifactId>teiapi</artifactId> <version>1.0-SNAPSHOT</version> </dependency> |
|
Line 31: | Line 51: |
</dependencies> }}} |
|
Line 32: | Line 54: |
=== Without Maven === | More complicated real-life example file: [[attachment:pom.xml]] |
TEI API
This page describes TeiAPI - a java library for parsing NKJP-compatible TEI P5 files.
Usage
Without Maven
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:
With Maven
In your pom.xml file:
- add repository information:
1 <repositories>
2
3 <repository>
4 ...
5 </repository>
6
7 <repository>
8 <releases>
9 <enabled>true</enabled>
10 <updatePolicy>always</updatePolicy>
11 <checksumPolicy>fail</checksumPolicy>
12 </releases>
13 <id>mlenart</id>
14 <name>mlenart</name>
15 <url>http://chopin.ipipan.waw.pl/~mlenart/maven2</url>
16 <layout>default</layout>
17 </repository>
18
19 </repositories>
- and dependency information:
More complicated real-life example file: pom.xml