|
a |
|
b/NLP/uima/pom.xml |
|
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
|
|
2 |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
|
3 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|
|
4 |
<modelVersion>4.0.0</modelVersion> |
|
|
5 |
<groupId>edu.buffalo.bmi</groupId> |
|
|
6 |
<artifactId>AnnotationViewer</artifactId> |
|
|
7 |
<version>1.0-SNAPSHOT</version> |
|
|
8 |
|
|
|
9 |
<name>AnnotationViewer</name> |
|
|
10 |
|
|
|
11 |
<properties> |
|
|
12 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
13 |
<maven.compiler.source>1.8</maven.compiler.source> |
|
|
14 |
<maven.compiler.target>1.8</maven.compiler.target> |
|
|
15 |
</properties> |
|
|
16 |
<repositories> |
|
|
17 |
<repository> |
|
|
18 |
<id>maven-central.snapshots</id> |
|
|
19 |
<name>Maven Central Snapshots</name> |
|
|
20 |
<url>https://oss.sonatype.org/content/repositories/snapshots</url> |
|
|
21 |
<releases><enabled>false</enabled></releases> |
|
|
22 |
<snapshots><enabled>true</enabled></snapshots> |
|
|
23 |
</repository> |
|
|
24 |
</repositories> |
|
|
25 |
<dependencies> |
|
|
26 |
<dependency> |
|
|
27 |
<groupId>org.apache.uima</groupId> |
|
|
28 |
<artifactId>uimaj-core</artifactId> |
|
|
29 |
<version>2.9.0</version> |
|
|
30 |
</dependency> |
|
|
31 |
<dependency> |
|
|
32 |
<groupId>junit</groupId> |
|
|
33 |
<artifactId>junit</artifactId> |
|
|
34 |
<scope>test</scope> |
|
|
35 |
<version>4.12</version> |
|
|
36 |
</dependency> |
|
|
37 |
<dependency> |
|
|
38 |
<groupId>edu.buffalo.bmi</groupId> |
|
|
39 |
<artifactId>uima-utils</artifactId> |
|
|
40 |
<version>1.0-SNAPSHOT</version> |
|
|
41 |
</dependency> |
|
|
42 |
</dependencies> |
|
|
43 |
<build> |
|
|
44 |
<plugins> |
|
|
45 |
<plugin> |
|
|
46 |
<artifactId>exec-maven-plugin</artifactId> |
|
|
47 |
<groupId>org.codehaus.mojo</groupId> |
|
|
48 |
<executions> |
|
|
49 |
<execution> |
|
|
50 |
<id>run</id> |
|
|
51 |
<goals> |
|
|
52 |
<goal>exec</goal> |
|
|
53 |
</goals> |
|
|
54 |
</execution> |
|
|
55 |
</executions> |
|
|
56 |
|
|
|
57 |
<configuration> |
|
|
58 |
<executable>java</executable> |
|
|
59 |
<arguments> |
|
|
60 |
<argument>-Xms128m</argument> |
|
|
61 |
<argument>-Xmx16g</argument> |
|
|
62 |
<argument>-cp</argument> |
|
|
63 |
<classpath /> |
|
|
64 |
<argument>-DEXTRACTION_HOME=target/${project.build.finalName}-application</argument> |
|
|
65 |
<argument>org.apache.uima.tools.docanalyzer.DocumentAnalyzer</argument> |
|
|
66 |
</arguments> |
|
|
67 |
</configuration> |
|
|
68 |
</plugin> |
|
|
69 |
|
|
|
70 |
</plugins> |
|
|
71 |
</build> |
|
|
72 |
</project> |