blob: 1a7c1522e4b5c1d5009ac193849577d4e697a730 [file] [log] [blame]
Marc Kupietz33677732020-09-04 22:07:39 +02001<?xml version="1.0" encoding="UTF-8"?>
Marc Kupietz4128bee2023-09-07 11:53:31 +02002<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">
Marc Kupietz33677732020-09-04 22:07:39 +02003 <modelVersion>4.0.0</modelVersion>
4
Marc Kupietz947acca2023-09-08 12:23:36 +02005 <groupId>de.ids-mannheim.korap.tokenizer</groupId>
Marc Kupietz33677732020-09-04 22:07:39 +02006 <artifactId>KorAP-Tokenizer</artifactId>
Marc Kupietz4128bee2023-09-07 11:53:31 +02007 <version>2.2.4-SNAPSHOT</version>
Marc Kupietz4cb81572023-09-07 11:34:11 +02008
9 <name>KorAP-Tokenizer</name>
10 <description>DFA tokenizer with character offset output, large abbreviation tables and CMC support.</description>
11 <url>https://github.com/KorAP/KorAP-Tokenizer</url>
12
Marc Kupietzeca88d72023-09-08 11:10:38 +020013 <organization>
14 <name>Leibniz-Institut für Deutsche Sprache</name>
15 <url>https://www.ids-mannheim.de</url>
16 </organization>
17
18 <developers>
19 <developer>
20 <id>kupietz</id>
21 <name>Marc Kupietz</name>
22 <email>kupietz@ids-mannheim.de</email>
23 </developer>
24 <developer>
25 <id>diewald</id>
26 <name>Nils Diewald</name>
27 <email>diewald@ids-mannheim.de</email>
28 </developer>
29 </developers>
30
Marc Kupietz4cb81572023-09-07 11:34:11 +020031 <scm>
32 <connection>scm:git:https://korap.ids-mannheim.de/gerrit/KorAP/KorAP-Tokenizer</connection>
Marc Kupietz4128bee2023-09-07 11:53:31 +020033 <tag>HEAD</tag>
34 </scm>
Marc Kupietz4cb81572023-09-07 11:34:11 +020035
36 <licenses>
37 <license>
38 <name>Apache License, Version 2.0</name>
39 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
40 <distribution>repo</distribution>
41 </license>
42 </licenses>
Marc Kupietz33677732020-09-04 22:07:39 +020043
44 <properties>
45 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Marc Kupietz33677732020-09-04 22:07:39 +020046 </properties>
47
48 <build>
49 <resources>
50 <resource>
51 <directory>src/main/resources</directory>
52 <excludes>
53 <!--<exclude>**/*.properties</exclude>-->
54 <exclude>**/*.sh</exclude>
55 <exclude>**/*.cfg</exclude>
56 </excludes>
57 </resource>
58 </resources>
59 <testResources>
60 <testResource>
61 <directory>src/test/resources</directory>
62 </testResource>
63 </testResources>
64 <plugins>
65 <plugin>
Marc Kupietz67eed1c2020-09-28 21:37:16 +020066 <groupId>com.igormaznitsa</groupId>
67 <artifactId>jcp</artifactId>
dependabot[bot]cbc63f82021-12-13 18:07:01 +000068 <version>7.0.5</version>
Marc Kupietz67eed1c2020-09-28 21:37:16 +020069 <executions>
70 <execution>
71 <id>preprocess for de</id>
72 <phase>generate-sources</phase>
73 <goals>
74 <goal>preprocess</goal>
75 </goals>
76 <configuration>
77 <vars>
78 <target.language>de</target.language>
79 </vars>
80 <target>src/main/jflex/de</target>
81 </configuration>
82 </execution>
83 <execution>
84 <id>preprocess for en</id>
85 <phase>generate-sources</phase>
86 <goals>
87 <goal>preprocess</goal>
88 </goals>
89 <configuration>
90 <vars>
91 <target.language>en</target.language>
92 </vars>
93 <target>src/main/jflex/en</target>
94 </configuration>
95 </execution>
Marc Kupietzf5a7e042020-10-12 10:43:24 +020096 <execution>
97 <id>preprocess for fr</id>
98 <phase>generate-sources</phase>
99 <goals>
100 <goal>preprocess</goal>
101 </goals>
102 <configuration>
103 <vars>
104 <target.language>fr</target.language>
105 </vars>
106 <target>src/main/jflex/fr</target>
107 </configuration>
108 </execution>
Marc Kupietz67eed1c2020-09-28 21:37:16 +0200109 </executions>
110 <configuration>
111 <sources>src/main/jpc/jflex</sources>
112 <target>src/main/jflex</target>
113 <extensions>
114 <extension>jflex</extension>
115 </extensions>
116 <keepAttributes>true</keepAttributes>
117 <keepComments>false</keepComments>
118 <keepLines>true</keepLines>
119 <verbose>true</verbose>
120 <clearTarget>true</clearTarget>
121 <replaceSources>true</replaceSources>
122 <dontOverwriteSameContent>false</dontOverwriteSameContent>
123 <skip>false</skip>
124 </configuration>
125 </plugin>
126 <plugin>
Marc Kupietz33677732020-09-04 22:07:39 +0200127 <groupId>org.apache.maven.plugins</groupId>
128 <artifactId>maven-surefire-plugin</artifactId>
dependabot[bot]366a6dd2023-06-06 18:56:46 +0000129 <version>3.1.2</version>
Marc Kupietz33677732020-09-04 22:07:39 +0200130 <configuration>
131 <threadCount>15</threadCount>
132 <reuseForks>true</reuseForks>
133 <parallel>classes</parallel>
134 </configuration>
135 </plugin>
136 <plugin>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-compiler-plugin</artifactId>
dependabot[bot]55fcf8d2023-02-27 18:58:07 +0000139 <version>3.11.0</version>
Marc Kupietz33677732020-09-04 22:07:39 +0200140 <configuration>
Marc Kupietzd30ad6d2023-09-06 08:08:32 +0200141 <release>17</release>
Marc Kupietz33677732020-09-04 22:07:39 +0200142 <showDeprecation>true</showDeprecation>
143 <annotationProcessorPaths>
144 <path>
145 <groupId>info.picocli</groupId>
146 <artifactId>picocli-codegen</artifactId>
Marc Kupietzdb4eacc2023-09-06 07:59:18 +0200147 <version>4.7.5</version>
Marc Kupietz33677732020-09-04 22:07:39 +0200148 </path>
149 </annotationProcessorPaths>
150 <compilerArgs>
151 <arg>-Aproject=${project.groupId}/${project.artifactId}
152 </arg>
153 </compilerArgs>
154 </configuration>
155 <executions>
156 <!-- Replacing default-compile as it is treated specially by maven -->
157 <execution>
158 <id>default-compile</id>
159 <phase>none</phase>
160 </execution>
161 <!-- Replacing default-testCompile as it is treated specially by
162 maven -->
163 <execution>
164 <id>default-testCompile</id>
165 <phase>none</phase>
166 </execution>
167 <execution>
168 <id>java-compile</id>
169 <phase>compile</phase>
170 <goals>
171 <goal>compile</goal>
172 </goals>
173 </execution>
174 <execution>
175 <id>java-test-compile</id>
176 <phase>test-compile</phase>
177 <goals>
178 <goal>testCompile</goal>
179 </goals>
180 </execution>
181 </executions>
182 </plugin>
183
184 <plugin>
185 <groupId>org.apache.maven.plugins</groupId>
Marc Kupietz33677732020-09-04 22:07:39 +0200186 <artifactId>maven-jar-plugin</artifactId>
dependabot[bot]c2ca3692023-03-02 18:57:00 +0000187 <version>3.3.0</version>
Marc Kupietz33677732020-09-04 22:07:39 +0200188 <configuration>
189 <archive>
190 <manifest>
191 <addClasspath>true</addClasspath>
192 <classpathPrefix>lib/</classpathPrefix>
Marc Kupietz751868b2020-09-25 17:59:38 +0200193 <mainClass>de.ids_mannheim.korap.tokenizer.Main</mainClass>
Marc Kupietzf8b7d952023-09-08 08:00:55 +0200194 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
Marc Kupietz33677732020-09-04 22:07:39 +0200195 </manifest>
196 </archive>
197 </configuration>
198 </plugin>
199
200 <plugin>
201 <groupId>de.jflex</groupId>
202 <artifactId>jflex-maven-plugin</artifactId>
dependabot[bot]719de212023-03-13 18:57:52 +0000203 <version>1.9.1</version>
Marc Kupietz33677732020-09-04 22:07:39 +0200204 <executions>
205 <execution>
206 <goals>
207 <goal>generate</goal>
208 </goals>
209 </execution>
210 </executions>
211 </plugin>
Marc Kupietz81925092020-09-07 15:16:51 +0200212
213 <plugin>
214 <groupId>org.apache.maven.plugins</groupId>
215 <artifactId>maven-assembly-plugin</artifactId>
Marc Kupietzdb4eacc2023-09-06 07:59:18 +0200216 <version>3.6.0</version>
Marc Kupietz81925092020-09-07 15:16:51 +0200217 <configuration>
Marc Kupietzf4df7122020-09-14 10:23:53 +0200218 <appendAssemblyId>true</appendAssemblyId>
Marc Kupietz81925092020-09-07 15:16:51 +0200219 <descriptors>
220 <descriptor>src/assembly/src-distribution.xml</descriptor>
221 <descriptor>src/assembly/bin-distribution.xml</descriptor>
222 </descriptors>
223 <archive>
224 <manifest>
Marc Kupietz751868b2020-09-25 17:59:38 +0200225 <mainClass>de.ids_mannheim.korap.tokenizer.Main</mainClass>
Marc Kupietzf8b7d952023-09-08 08:00:55 +0200226 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
Marc Kupietz81925092020-09-07 15:16:51 +0200227 </manifest>
228 </archive>
229 </configuration>
230 <executions>
231 <execution>
232 <id>make-assembly</id>
233 <phase>package</phase>
234 <goals>
235 <goal>single</goal>
236 </goals>
237 </execution>
238 </executions>
239 </plugin>
Marc Kupietzf4df7122020-09-14 10:23:53 +0200240 <plugin>
Marc Kupietzc419d5b2020-09-17 15:21:26 +0200241 <groupId>org.codehaus.mojo</groupId>
242 <artifactId>appassembler-maven-plugin</artifactId>
dependabot[bot]af0b2b92020-12-09 08:13:16 +0000243 <version>2.1.0</version>
Marc Kupietzc419d5b2020-09-17 15:21:26 +0200244 <executions>
245 <execution>
246 <phase>package</phase>
247 <goals>
248 <goal>assemble</goal>
249 </goals>
250 </execution>
251 </executions>
252 <configuration>
253 <binFolder>bin</binFolder>
254 <binFileExtensions>
Marc Kupietz4128bee2023-09-07 11:53:31 +0200255 <unix />
Marc Kupietzc419d5b2020-09-17 15:21:26 +0200256 </binFileExtensions>
257 <programs>
258 <program>
Marc Kupietz751868b2020-09-25 17:59:38 +0200259 <mainClass>de.ids_mannheim.korap.tokenizer.Main</mainClass>
Marc Kupietzc419d5b2020-09-17 15:21:26 +0200260 <id>koraptokenizer</id>
261 </program>
262 </programs>
263 </configuration>
264 </plugin>
Marc Kupietz45d2dba2020-10-13 19:13:35 +0200265 <plugin>
266 <artifactId>maven-dependency-plugin</artifactId>
Marc Kupietzdb4eacc2023-09-06 07:59:18 +0200267 <version>3.6.0</version>
Marc Kupietz45d2dba2020-10-13 19:13:35 +0200268 <executions>
269 <execution>
270 <id>analyze</id>
271 <goals>
272 <goal>analyze-only</goal>
273 </goals>
274 <configuration>
275 <failOnWarning>true</failOnWarning>
276 <outputXML>true</outputXML>
277 </configuration>
278 </execution>
279 </executions>
280 </plugin>
Marc Kupietzd1dc8482023-09-07 21:28:23 +0200281 <plugin>
282 <groupId>org.apache.maven.plugins</groupId>
283 <artifactId>maven-javadoc-plugin</artifactId>
284 <version>3.5.0</version>
285 <configuration>
286 <doclint>all,-missing</doclint>
287 <tags>
288 <tag>
289 <name>apiNote</name>
290 <placement>a</placement>
291 <head>API Note:</head>
292 </tag>
293 </tags>
294 </configuration>
Marc Kupietz938510c2023-09-08 08:39:04 +0200295 <executions>
296 <execution>
297 <id>attach-javadocs</id>
298 <phase>package</phase>
299 <goals>
300 <goal>aggregate-jar</goal>
301 </goals>
302 </execution>
303 </executions>
Marc Kupietzd1dc8482023-09-07 21:28:23 +0200304 </plugin>
Marc Kupietz33677732020-09-04 22:07:39 +0200305 </plugins>
306 </build>
307
308 <dependencies>
Marc Kupietzc419d5b2020-09-17 15:21:26 +0200309 <dependency>
310 <groupId>info.picocli</groupId>
311 <artifactId>picocli</artifactId>
Marc Kupietzdb4eacc2023-09-06 07:59:18 +0200312 <version>4.7.5</version>
Marc Kupietzc419d5b2020-09-17 15:21:26 +0200313 </dependency>
314
Marc Kupietz81925092020-09-07 15:16:51 +0200315 <!-- https://mvnrepository.com/artifact/org.apache.opennlp/opennlp-tools -->
316 <dependency>
317 <groupId>org.apache.opennlp</groupId>
318 <artifactId>opennlp-tools</artifactId>
Marc Kupietzd30ad6d2023-09-06 08:08:32 +0200319 <version>2.3.0</version>
Marc Kupietz81925092020-09-07 15:16:51 +0200320 </dependency>
Marc Kupietz33677732020-09-04 22:07:39 +0200321 <dependency>
Marc Kupietz33677732020-09-04 22:07:39 +0200322 <groupId>junit</groupId>
323 <artifactId>junit</artifactId>
dependabot[bot]52dd64d2021-02-15 07:28:02 +0000324 <version>4.13.2</version>
Gregor Middell9968d7a2022-05-27 09:52:45 +0200325 <scope>test</scope>
Marc Kupietz33677732020-09-04 22:07:39 +0200326 </dependency>
Marc Kupietz793f85d2020-09-08 14:40:24 +0200327 <dependency>
Marc Kupietz5c6df032020-09-29 22:19:38 +0200328 <groupId>io.github.classgraph</groupId>
329 <artifactId>classgraph</artifactId>
Marc Kupietzdb4eacc2023-09-06 07:59:18 +0200330 <version>4.8.162</version>
Marc Kupietz5c6df032020-09-29 22:19:38 +0200331 </dependency>
Marc Kupietz33677732020-09-04 22:07:39 +0200332 </dependencies>
Marc Kupietz33677732020-09-04 22:07:39 +0200333</project>