Differences between revisions 4 and 13 (spanning 9 versions)
Size: 675
Comment:
|
Size: 1108
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 |
|
Line 14: | Line 20: |
Line 17: | Line 24: |
Line 28: | Line 36: |
Line 30: | Line 39: |
* and dependency information: {{{#!highlight xml <dependencies> ... <dependency> <groupId>ipipan</groupId> <artifactId>teiapi</artifactId> <version>1.0-SNAPSHOT</version> </dependency> |
|
Line 31: | Line 49: |
</dependencies> }}} |
|
Line 32: | Line 52: |
=== 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
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