-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
107 lines (105 loc) · 3.59 KB
/
pom.xml
File metadata and controls
107 lines (105 loc) · 3.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<name>String Annotation</name>
<description>A GATE plugin that provides processing resources for annotating documents based
on gazetteer lists and Java regular expressions. The gazetteer annotator is able to store
very large gazetteer lists in memory and can match against either the document text or the
value of annotation features.
</description>
<url>https://github.com/johann-petrak/gateplugin-StringAnnotation</url>
<groupId>uk.ac.gate.plugins</groupId>
<artifactId>stringannotation</artifactId>
<version>4.2-SNAPSHOT</version><!-- PLUGINVERSION -->
<organization>
<name>GATE Team</name>
<url>http://gate.ac.uk</url>
</organization>
<developers>
<developer>
<name>Johann Petrak</name>
<email>johann.petrak@gmail.com</email>
<organization>GATE Team</organization>
<organizationUrl>https://gate.ac.uk</organizationUrl>
</developer>
<developer>
<name>GATE Team</name>
<email>gate-developers@lists.sourceforge.net</email>
<organization>GATE Team</organization>
<organizationUrl>https://gate.ac.uk</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/GateNLP/gateplugin-StringAnnotation.git</connection>
<developerConnection>scm:git:git@github.com:GateNLP/gateplugin-StringAnnotation.git</developerConnection>
<url>https://github.com/GateNLP/gateplugin-StringAnnotation</url>
</scm>
<licenses>
<license>
<name>GNU Lesser General Public License (LGPL), Version 3</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<id>build-classpath</id>
<phase>generate-sources</phase>
<goals>
<goal>build-classpath</goal>
</goals>
<configuration>
<!-- <attach>true</attach> -->
<outputFile>stringannotation.classpath</outputFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<parent>
<groupId>uk.ac.gate</groupId>
<artifactId>gate-plugin-base</artifactId>
<version>8.5.1</version>
<relativePath/>
</parent>
<dependencies>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil</artifactId>
<version>8.1.0</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.32</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<!-- <scope>test</scope> -->
</dependency>
</dependencies>
<modelVersion>4.0.0</modelVersion>
</project>