-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpom.xml
167 lines (167 loc) · 5.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?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">
<groupId>uk.ac.gate.plugins</groupId>
<artifactId>learningframework</artifactId>
<version>4.3-SNAPSHOT</version>
<!-- PLUGINVERSION -->
<name>Learning Framework</name>
<description>
A GATE plugin that provides many different machine learning
algorithms for a wide range of
NLP-related machine learning tasks like
text classification, tagging, or chunking.
</description>
<url>https://gatenlp.github.io/gateplugin-LearningFramework/</url>
<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-LearningFramework.git</connection>
<developerConnection>scm:git:git@github.com:GateNLP/gateplugin-LearningFramework.git</developerConnection>
<url>https://github.com/GateNLP/gateplugin-LearningFramework</url>
</scm>
<parent>
<groupId>uk.ac.gate</groupId>
<artifactId>gate-plugin-base</artifactId>
<version>8.6.1</version>
<relativePath/>
</parent>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<gate-core.version>8.6.1</gate-core.version>
</properties>
<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>
<dependencies>
<dependency>
<groupId>uk.ac.gate</groupId>
<artifactId>interaction</artifactId>
<version>4.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.6.1</version>
</dependency>
<!-- https://github.com/datumbox/libsvm -->
<dependency>
<groupId>com.datumbox</groupId>
<artifactId>libsvm</artifactId>
<version>3.22</version>
</dependency>
<dependency>
<groupId>cc.mallet</groupId>
<artifactId>mallet</artifactId>
<version>2.0.8</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.32</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.mashape.unirest/unirest-java -->
<!-- NOTE: temporary dependency as long as we include a copy of gatelib-interaction -->
<dependency>
<groupId>com.mashape.unirest</groupId>
<artifactId>unirest-java</artifactId>
<version>1.4.9</version>
</dependency>
<dependency>
<groupId>uk.ac.gate.plugins</groupId>
<artifactId>evaluation</artifactId>
<version>0.8-alpha1</version>
<scope>test</scope>
</dependency>
</dependencies>
<modelVersion>4.0.0</modelVersion>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<compilerArgs>
<!-- <arg>-verbose</arg> -->
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.2.5</version>
<executions>
<execution>
<id>get-the-git-infos</id>
<goals>
<goal>revision</goal>
</goals>
<!-- *NOTE*: The default phase of revision is initialize, but in case you want to change it, you can do so by adding the phase here -->
<phase>initialize</phase>
</execution>
<execution>
<id>validate-the-git-infos</id>
<goals>
<goal>validateRevision</goal>
</goals>
<!-- *NOTE*: The default phase of validateRevision is verify, but in case you want to change it, you can do so by adding the phase here -->
<phase>package</phase>
</execution>
</executions>
<configuration>
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
<prefix>gitInfo</prefix>
<verbose>false</verbose>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
<!-- <format>json</format> -->
<gitDescribe>
<skip>false</skip>
<always>false</always>
<dirty>-dirty</dirty>
</gitDescribe>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.3</version>
<configuration>
<findbugsXmlOutput>true</findbugsXmlOutput>
<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
<excludeFilterFile>src/build/resources/findbugs-excluded.xml</excludeFilterFile>
<xmlOutput>true</xmlOutput>
<effort>Max</effort>
<threshold>Low</threshold>
<maxHeap>1024</maxHeap>
</configuration>
</plugin>
</plugins>
</reporting>
</project>