blob: 8f120a3b38542634bf87c48e5d3088a82bfbe495 [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>
Marc Kupietzc93f8622023-09-08 12:57:00 +02004 <packaging>jar</packaging>
Marc Kupietz33677732020-09-04 22:07:39 +02005
Marc Kupietz947acca2023-09-08 12:23:36 +02006 <groupId>de.ids-mannheim.korap.tokenizer</groupId>
Marc Kupietz33677732020-09-04 22:07:39 +02007 <artifactId>KorAP-Tokenizer</artifactId>
Marc Kupietza127e892023-09-08 15:50:32 +02008 <version>2.2.6-SNAPSHOT</version>
Marc Kupietz4cb81572023-09-07 11:34:11 +02009
10 <name>KorAP-Tokenizer</name>
11 <description>DFA tokenizer with character offset output, large abbreviation tables and CMC support.</description>
12 <url>https://github.com/KorAP/KorAP-Tokenizer</url>
13
Marc Kupietzeca88d72023-09-08 11:10:38 +020014 <organization>
15 <name>Leibniz-Institut für Deutsche Sprache</name>
16 <url>https://www.ids-mannheim.de</url>
17 </organization>
18
19 <developers>
20 <developer>
21 <id>kupietz</id>
22 <name>Marc Kupietz</name>
23 <email>kupietz@ids-mannheim.de</email>
24 </developer>
25 <developer>
26 <id>diewald</id>
27 <name>Nils Diewald</name>
28 <email>diewald@ids-mannheim.de</email>
29 </developer>
30 </developers>
31
Marc Kupietz4cb81572023-09-07 11:34:11 +020032 <scm>
33 <connection>scm:git:https://korap.ids-mannheim.de/gerrit/KorAP/KorAP-Tokenizer</connection>
Marc Kupietzf470f7f2023-09-08 12:24:49 +020034 <developerConnection>scm:git:ssh://kupietz@korap.ids-mannheim.de:29418/KorAP/KorAP-Tokenizer</developerConnection>
Marc Kupietzec5ab552023-09-08 15:32:16 +020035 <url>https://github.com/KorAP/KorAP-Tokenizer</url>
Marc Kupietza127e892023-09-08 15:50:32 +020036 <tag>HEAD</tag>
Marc Kupietzee0058d2023-09-08 15:50:32 +020037 </scm>
Marc Kupietz4cb81572023-09-07 11:34:11 +020038
39 <licenses>
40 <license>
41 <name>Apache License, Version 2.0</name>
42 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
43 <distribution>repo</distribution>
44 </license>
45 </licenses>
Marc Kupietz33677732020-09-04 22:07:39 +020046
47 <properties>
48 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Marc Kupietz0235ea02025-12-07 11:56:59 +010049 <force.fast>false</force.fast>
Marc Kupietz33677732020-09-04 22:07:39 +020050 </properties>
51
Marc Kupietz5db045c2023-09-08 15:33:18 +020052 <distributionManagement>
53 <snapshotRepository>
Marc Kupietz7fe9c9a2023-09-08 17:12:48 +020054 <id>korap</id>
Marc Kupietz5db045c2023-09-08 15:33:18 +020055 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
56 </snapshotRepository>
57 <repository>
Marc Kupietz7fe9c9a2023-09-08 17:12:48 +020058 <id>korap</id>
Marc Kupietz5db045c2023-09-08 15:33:18 +020059 <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
60 </repository>
61 </distributionManagement>
62
Marc Kupietz33677732020-09-04 22:07:39 +020063 <build>
64 <resources>
65 <resource>
66 <directory>src/main/resources</directory>
67 <excludes>
68 <!--<exclude>**/*.properties</exclude>-->
69 <exclude>**/*.sh</exclude>
70 <exclude>**/*.cfg</exclude>
71 </excludes>
72 </resource>
73 </resources>
74 <testResources>
75 <testResource>
76 <directory>src/test/resources</directory>
77 </testResource>
78 </testResources>
79 <plugins>
80 <plugin>
Marc Kupietz67eed1c2020-09-28 21:37:16 +020081 <groupId>com.igormaznitsa</groupId>
82 <artifactId>jcp</artifactId>
dependabot[bot]cbc63f82021-12-13 18:07:01 +000083 <version>7.0.5</version>
Marc Kupietz67eed1c2020-09-28 21:37:16 +020084 <executions>
85 <execution>
86 <id>preprocess for de</id>
87 <phase>generate-sources</phase>
88 <goals>
89 <goal>preprocess</goal>
90 </goals>
91 <configuration>
92 <vars>
93 <target.language>de</target.language>
94 </vars>
95 <target>src/main/jflex/de</target>
96 </configuration>
97 </execution>
98 <execution>
99 <id>preprocess for en</id>
100 <phase>generate-sources</phase>
101 <goals>
102 <goal>preprocess</goal>
103 </goals>
104 <configuration>
105 <vars>
106 <target.language>en</target.language>
107 </vars>
108 <target>src/main/jflex/en</target>
109 </configuration>
110 </execution>
Marc Kupietzf5a7e042020-10-12 10:43:24 +0200111 <execution>
112 <id>preprocess for fr</id>
113 <phase>generate-sources</phase>
114 <goals>
115 <goal>preprocess</goal>
116 </goals>
117 <configuration>
118 <vars>
119 <target.language>fr</target.language>
120 </vars>
121 <target>src/main/jflex/fr</target>
122 </configuration>
123 </execution>
Marc Kupietz67eed1c2020-09-28 21:37:16 +0200124 </executions>
125 <configuration>
126 <sources>src/main/jpc/jflex</sources>
127 <target>src/main/jflex</target>
128 <extensions>
129 <extension>jflex</extension>
Marc Kupietz0235ea02025-12-07 11:56:59 +0100130 <extension>jflex-macro</extension>
Marc Kupietz67eed1c2020-09-28 21:37:16 +0200131 </extensions>
132 <keepAttributes>true</keepAttributes>
133 <keepComments>false</keepComments>
134 <keepLines>true</keepLines>
135 <verbose>true</verbose>
136 <clearTarget>true</clearTarget>
137 <replaceSources>true</replaceSources>
138 <dontOverwriteSameContent>false</dontOverwriteSameContent>
139 <skip>false</skip>
Marc Kupietz0235ea02025-12-07 11:56:59 +0100140 <vars>
141 <force.fast>${force.fast}</force.fast>
142 </vars>
Marc Kupietz67eed1c2020-09-28 21:37:16 +0200143 </configuration>
144 </plugin>
145 <plugin>
Marc Kupietz33677732020-09-04 22:07:39 +0200146 <groupId>org.apache.maven.plugins</groupId>
147 <artifactId>maven-surefire-plugin</artifactId>
dependabot[bot]366a6dd2023-06-06 18:56:46 +0000148 <version>3.1.2</version>
Marc Kupietz33677732020-09-04 22:07:39 +0200149 <configuration>
150 <threadCount>15</threadCount>
151 <reuseForks>true</reuseForks>
152 <parallel>classes</parallel>
Marc Kupietz0235ea02025-12-07 11:56:59 +0100153 <systemPropertyVariables>
154 <force.fast>${force.fast}</force.fast>
155 </systemPropertyVariables>
Marc Kupietz33677732020-09-04 22:07:39 +0200156 </configuration>
157 </plugin>
158 <plugin>
159 <groupId>org.apache.maven.plugins</groupId>
160 <artifactId>maven-compiler-plugin</artifactId>
dependabot[bot]55fcf8d2023-02-27 18:58:07 +0000161 <version>3.11.0</version>
Marc Kupietz33677732020-09-04 22:07:39 +0200162 <configuration>
Marc Kupietzd30ad6d2023-09-06 08:08:32 +0200163 <release>17</release>
Marc Kupietz33677732020-09-04 22:07:39 +0200164 <showDeprecation>true</showDeprecation>
165 <annotationProcessorPaths>
166 <path>
167 <groupId>info.picocli</groupId>
168 <artifactId>picocli-codegen</artifactId>
Marc Kupietzdb4eacc2023-09-06 07:59:18 +0200169 <version>4.7.5</version>
Marc Kupietz33677732020-09-04 22:07:39 +0200170 </path>
171 </annotationProcessorPaths>
172 <compilerArgs>
173 <arg>-Aproject=${project.groupId}/${project.artifactId}
174 </arg>
175 </compilerArgs>
176 </configuration>
177 <executions>
178 <!-- Replacing default-compile as it is treated specially by maven -->
179 <execution>
180 <id>default-compile</id>
181 <phase>none</phase>
182 </execution>
183 <!-- Replacing default-testCompile as it is treated specially by
184 maven -->
185 <execution>
186 <id>default-testCompile</id>
187 <phase>none</phase>
188 </execution>
189 <execution>
190 <id>java-compile</id>
191 <phase>compile</phase>
192 <goals>
193 <goal>compile</goal>
194 </goals>
195 </execution>
196 <execution>
197 <id>java-test-compile</id>
198 <phase>test-compile</phase>
199 <goals>
200 <goal>testCompile</goal>
201 </goals>
202 </execution>
203 </executions>
204 </plugin>
205
206 <plugin>
207 <groupId>org.apache.maven.plugins</groupId>
Marc Kupietz33677732020-09-04 22:07:39 +0200208 <artifactId>maven-jar-plugin</artifactId>
dependabot[bot]c2ca3692023-03-02 18:57:00 +0000209 <version>3.3.0</version>
Marc Kupietz33677732020-09-04 22:07:39 +0200210 <configuration>
211 <archive>
212 <manifest>
213 <addClasspath>true</addClasspath>
214 <classpathPrefix>lib/</classpathPrefix>
Marc Kupietz751868b2020-09-25 17:59:38 +0200215 <mainClass>de.ids_mannheim.korap.tokenizer.Main</mainClass>
Marc Kupietzf8b7d952023-09-08 08:00:55 +0200216 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
Marc Kupietz33677732020-09-04 22:07:39 +0200217 </manifest>
218 </archive>
219 </configuration>
220 </plugin>
221
222 <plugin>
223 <groupId>de.jflex</groupId>
224 <artifactId>jflex-maven-plugin</artifactId>
dependabot[bot]719de212023-03-13 18:57:52 +0000225 <version>1.9.1</version>
Marc Kupietz33677732020-09-04 22:07:39 +0200226 <executions>
227 <execution>
228 <goals>
229 <goal>generate</goal>
230 </goals>
231 </execution>
232 </executions>
233 </plugin>
Marc Kupietz81925092020-09-07 15:16:51 +0200234
235 <plugin>
236 <groupId>org.apache.maven.plugins</groupId>
237 <artifactId>maven-assembly-plugin</artifactId>
Marc Kupietzdb4eacc2023-09-06 07:59:18 +0200238 <version>3.6.0</version>
Marc Kupietz81925092020-09-07 15:16:51 +0200239 <configuration>
Marc Kupietzf4df7122020-09-14 10:23:53 +0200240 <appendAssemblyId>true</appendAssemblyId>
Marc Kupietz81925092020-09-07 15:16:51 +0200241 <descriptors>
242 <descriptor>src/assembly/src-distribution.xml</descriptor>
243 <descriptor>src/assembly/bin-distribution.xml</descriptor>
244 </descriptors>
245 <archive>
246 <manifest>
Marc Kupietz751868b2020-09-25 17:59:38 +0200247 <mainClass>de.ids_mannheim.korap.tokenizer.Main</mainClass>
Marc Kupietzf8b7d952023-09-08 08:00:55 +0200248 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
Marc Kupietz81925092020-09-07 15:16:51 +0200249 </manifest>
250 </archive>
251 </configuration>
252 <executions>
253 <execution>
254 <id>make-assembly</id>
255 <phase>package</phase>
256 <goals>
257 <goal>single</goal>
258 </goals>
259 </execution>
260 </executions>
261 </plugin>
Marc Kupietzf4df7122020-09-14 10:23:53 +0200262 <plugin>
Marc Kupietzc419d5b2020-09-17 15:21:26 +0200263 <groupId>org.codehaus.mojo</groupId>
264 <artifactId>appassembler-maven-plugin</artifactId>
dependabot[bot]af0b2b92020-12-09 08:13:16 +0000265 <version>2.1.0</version>
Marc Kupietzc419d5b2020-09-17 15:21:26 +0200266 <executions>
267 <execution>
268 <phase>package</phase>
269 <goals>
270 <goal>assemble</goal>
271 </goals>
272 </execution>
273 </executions>
274 <configuration>
275 <binFolder>bin</binFolder>
276 <binFileExtensions>
Marc Kupietz4128bee2023-09-07 11:53:31 +0200277 <unix />
Marc Kupietzc419d5b2020-09-17 15:21:26 +0200278 </binFileExtensions>
279 <programs>
280 <program>
Marc Kupietz751868b2020-09-25 17:59:38 +0200281 <mainClass>de.ids_mannheim.korap.tokenizer.Main</mainClass>
Marc Kupietzc419d5b2020-09-17 15:21:26 +0200282 <id>koraptokenizer</id>
283 </program>
284 </programs>
285 </configuration>
286 </plugin>
Marc Kupietz45d2dba2020-10-13 19:13:35 +0200287 <plugin>
288 <artifactId>maven-dependency-plugin</artifactId>
Marc Kupietzdb4eacc2023-09-06 07:59:18 +0200289 <version>3.6.0</version>
Marc Kupietz45d2dba2020-10-13 19:13:35 +0200290 <executions>
291 <execution>
292 <id>analyze</id>
293 <goals>
294 <goal>analyze-only</goal>
295 </goals>
296 <configuration>
297 <failOnWarning>true</failOnWarning>
298 <outputXML>true</outputXML>
299 </configuration>
300 </execution>
301 </executions>
302 </plugin>
Marc Kupietzd1dc8482023-09-07 21:28:23 +0200303 <plugin>
304 <groupId>org.apache.maven.plugins</groupId>
305 <artifactId>maven-javadoc-plugin</artifactId>
306 <version>3.5.0</version>
307 <configuration>
308 <doclint>all,-missing</doclint>
309 <tags>
310 <tag>
311 <name>apiNote</name>
312 <placement>a</placement>
313 <head>API Note:</head>
314 </tag>
315 </tags>
316 </configuration>
Marc Kupietz938510c2023-09-08 08:39:04 +0200317 <executions>
318 <execution>
319 <id>attach-javadocs</id>
320 <phase>package</phase>
321 <goals>
322 <goal>aggregate-jar</goal>
323 </goals>
324 </execution>
325 </executions>
Marc Kupietzd1dc8482023-09-07 21:28:23 +0200326 </plugin>
Marc Kupietz783378f2023-09-08 15:33:40 +0200327 <plugin>
328 <groupId>org.apache.maven.plugins</groupId>
329 <artifactId>maven-gpg-plugin</artifactId>
330 <version>3.1.0</version>
331 <executions>
332 <execution>
333 <id>sign-artifacts</id>
334 <phase>verify</phase>
335 <goals>
336 <goal>sign</goal>
337 </goals>
338 </execution>
339 </executions>
340 </plugin>
Marc Kupietze3f0b992023-09-08 17:13:31 +0200341 <plugin>
342 <groupId>org.sonatype.plugins</groupId>
343 <artifactId>nexus-staging-maven-plugin</artifactId>
344 <version>1.6.7</version>
345 <extensions>true</extensions>
346 <configuration>
347 <serverId>korap</serverId>
348 <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
349 <autoReleaseAfterClose>false</autoReleaseAfterClose>
350 </configuration>
351 </plugin>
Marc Kupietz33677732020-09-04 22:07:39 +0200352 </plugins>
353 </build>
354
355 <dependencies>
Marc Kupietzc419d5b2020-09-17 15:21:26 +0200356 <dependency>
357 <groupId>info.picocli</groupId>
358 <artifactId>picocli</artifactId>
Marc Kupietzdb4eacc2023-09-06 07:59:18 +0200359 <version>4.7.5</version>
Marc Kupietzc419d5b2020-09-17 15:21:26 +0200360 </dependency>
361
Marc Kupietz81925092020-09-07 15:16:51 +0200362 <!-- https://mvnrepository.com/artifact/org.apache.opennlp/opennlp-tools -->
363 <dependency>
364 <groupId>org.apache.opennlp</groupId>
365 <artifactId>opennlp-tools</artifactId>
Marc Kupietzd30ad6d2023-09-06 08:08:32 +0200366 <version>2.3.0</version>
Marc Kupietz81925092020-09-07 15:16:51 +0200367 </dependency>
Marc Kupietz33677732020-09-04 22:07:39 +0200368 <dependency>
Marc Kupietz33677732020-09-04 22:07:39 +0200369 <groupId>junit</groupId>
370 <artifactId>junit</artifactId>
dependabot[bot]52dd64d2021-02-15 07:28:02 +0000371 <version>4.13.2</version>
Gregor Middell9968d7a2022-05-27 09:52:45 +0200372 <scope>test</scope>
Marc Kupietz33677732020-09-04 22:07:39 +0200373 </dependency>
Marc Kupietz793f85d2020-09-08 14:40:24 +0200374 <dependency>
Marc Kupietz5c6df032020-09-29 22:19:38 +0200375 <groupId>io.github.classgraph</groupId>
376 <artifactId>classgraph</artifactId>
Marc Kupietzdb4eacc2023-09-06 07:59:18 +0200377 <version>4.8.162</version>
Marc Kupietz5c6df032020-09-29 22:19:38 +0200378 </dependency>
Marc Kupietz33677732020-09-04 22:07:39 +0200379 </dependencies>
Marc Kupietz33677732020-09-04 22:07:39 +0200380</project>