forked from johann-petrak/gateplugin-VirtualCorpus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
89 lines (79 loc) · 2.87 KB
/
pom.xml
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
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>uk.ac.gate</groupId>
<artifactId>gate-plugin-base</artifactId>
<!-- The version of GATE you wish to build against -->
<!-- note that this is also the earliest version of GATE which will load
your plugin -->
<version>8.6</version>
<!-- This forces the parent to always be resolved from the repo -->
<relativePath />
</parent>
<!-- The Maven coordinates of this plugin -->
<groupId>gate.virtualcorpus</groupId>
<artifactId>virtualcorpus</artifactId>
<version>1.0-SNAPSHOT</version>
<!-- Information about this plugin. This will be used when the plugin is
shown in the GATE plugin manager -->
<!-- Add a descriptive short name of the plugin -->
<name></name>
<!-- Add a description of what the plugin does or can be used for. Do not
include the list of processing or language resources, this will be determined
automatically. About one or two paragraphs. -->
<description></description>
<!-- Add the URL of the plugin's user-oriented web page -->
<url></url>
<licenses>
<license>
<!-- The license used for most GATE plugins and components. Replace with
any other license which is compatible with the licenses of all the software
and libraries this plugin depends on. -->
<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>
<!-- there are plenty of other pieces of useful information you can also
provide here. See the pom.xml reference for full details -->
<dependencies>
<dependency>
<groupId>org.apache.jclouds.labs</groupId>
<artifactId>h2-jdbc</artifactId>
<version>2.1.2</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.15</version>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.5</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.27.2.1</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>3.10.2</version>
</dependency>
<dependency>
<groupId>org.mapdb</groupId>
<artifactId>mapdb</artifactId>
<version>3.0.7</version>
</dependency>
</dependencies>
</project>