Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Marc Kupietz | 4128bee | 2023-09-07 11:53:31 +0200 | [diff] [blame] | 2 | <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 Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Marc Kupietz | c93f862 | 2023-09-08 12:57:00 +0200 | [diff] [blame] | 4 | <packaging>jar</packaging> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 5 | |
Marc Kupietz | 947acca | 2023-09-08 12:23:36 +0200 | [diff] [blame] | 6 | <groupId>de.ids-mannheim.korap.tokenizer</groupId> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 7 | <artifactId>KorAP-Tokenizer</artifactId> |
Marc Kupietz | 4128bee | 2023-09-07 11:53:31 +0200 | [diff] [blame] | 8 | <version>2.2.4-SNAPSHOT</version> |
Marc Kupietz | 4cb8157 | 2023-09-07 11:34:11 +0200 | [diff] [blame] | 9 | |
| 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 Kupietz | eca88d7 | 2023-09-08 11:10:38 +0200 | [diff] [blame] | 14 | <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 Kupietz | 4cb8157 | 2023-09-07 11:34:11 +0200 | [diff] [blame] | 32 | <scm> |
| 33 | <connection>scm:git:https://korap.ids-mannheim.de/gerrit/KorAP/KorAP-Tokenizer</connection> |
Marc Kupietz | f470f7f | 2023-09-08 12:24:49 +0200 | [diff] [blame] | 34 | <developerConnection>scm:git:ssh://kupietz@korap.ids-mannheim.de:29418/KorAP/KorAP-Tokenizer</developerConnection> |
| 35 | <tag>HEAD</tag> |
| 36 | </scm> |
Marc Kupietz | 4cb8157 | 2023-09-07 11:34:11 +0200 | [diff] [blame] | 37 | |
| 38 | <licenses> |
| 39 | <license> |
| 40 | <name>Apache License, Version 2.0</name> |
| 41 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 42 | <distribution>repo</distribution> |
| 43 | </license> |
| 44 | </licenses> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 45 | |
| 46 | <properties> |
| 47 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 48 | </properties> |
| 49 | |
| 50 | <build> |
| 51 | <resources> |
| 52 | <resource> |
| 53 | <directory>src/main/resources</directory> |
| 54 | <excludes> |
| 55 | <!--<exclude>**/*.properties</exclude>--> |
| 56 | <exclude>**/*.sh</exclude> |
| 57 | <exclude>**/*.cfg</exclude> |
| 58 | </excludes> |
| 59 | </resource> |
| 60 | </resources> |
| 61 | <testResources> |
| 62 | <testResource> |
| 63 | <directory>src/test/resources</directory> |
| 64 | </testResource> |
| 65 | </testResources> |
| 66 | <plugins> |
| 67 | <plugin> |
Marc Kupietz | 67eed1c | 2020-09-28 21:37:16 +0200 | [diff] [blame] | 68 | <groupId>com.igormaznitsa</groupId> |
| 69 | <artifactId>jcp</artifactId> |
dependabot[bot] | cbc63f8 | 2021-12-13 18:07:01 +0000 | [diff] [blame] | 70 | <version>7.0.5</version> |
Marc Kupietz | 67eed1c | 2020-09-28 21:37:16 +0200 | [diff] [blame] | 71 | <executions> |
| 72 | <execution> |
| 73 | <id>preprocess for de</id> |
| 74 | <phase>generate-sources</phase> |
| 75 | <goals> |
| 76 | <goal>preprocess</goal> |
| 77 | </goals> |
| 78 | <configuration> |
| 79 | <vars> |
| 80 | <target.language>de</target.language> |
| 81 | </vars> |
| 82 | <target>src/main/jflex/de</target> |
| 83 | </configuration> |
| 84 | </execution> |
| 85 | <execution> |
| 86 | <id>preprocess for en</id> |
| 87 | <phase>generate-sources</phase> |
| 88 | <goals> |
| 89 | <goal>preprocess</goal> |
| 90 | </goals> |
| 91 | <configuration> |
| 92 | <vars> |
| 93 | <target.language>en</target.language> |
| 94 | </vars> |
| 95 | <target>src/main/jflex/en</target> |
| 96 | </configuration> |
| 97 | </execution> |
Marc Kupietz | f5a7e04 | 2020-10-12 10:43:24 +0200 | [diff] [blame] | 98 | <execution> |
| 99 | <id>preprocess for fr</id> |
| 100 | <phase>generate-sources</phase> |
| 101 | <goals> |
| 102 | <goal>preprocess</goal> |
| 103 | </goals> |
| 104 | <configuration> |
| 105 | <vars> |
| 106 | <target.language>fr</target.language> |
| 107 | </vars> |
| 108 | <target>src/main/jflex/fr</target> |
| 109 | </configuration> |
| 110 | </execution> |
Marc Kupietz | 67eed1c | 2020-09-28 21:37:16 +0200 | [diff] [blame] | 111 | </executions> |
| 112 | <configuration> |
| 113 | <sources>src/main/jpc/jflex</sources> |
| 114 | <target>src/main/jflex</target> |
| 115 | <extensions> |
| 116 | <extension>jflex</extension> |
| 117 | </extensions> |
| 118 | <keepAttributes>true</keepAttributes> |
| 119 | <keepComments>false</keepComments> |
| 120 | <keepLines>true</keepLines> |
| 121 | <verbose>true</verbose> |
| 122 | <clearTarget>true</clearTarget> |
| 123 | <replaceSources>true</replaceSources> |
| 124 | <dontOverwriteSameContent>false</dontOverwriteSameContent> |
| 125 | <skip>false</skip> |
| 126 | </configuration> |
| 127 | </plugin> |
| 128 | <plugin> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 129 | <groupId>org.apache.maven.plugins</groupId> |
| 130 | <artifactId>maven-surefire-plugin</artifactId> |
dependabot[bot] | 366a6dd | 2023-06-06 18:56:46 +0000 | [diff] [blame] | 131 | <version>3.1.2</version> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 132 | <configuration> |
| 133 | <threadCount>15</threadCount> |
| 134 | <reuseForks>true</reuseForks> |
| 135 | <parallel>classes</parallel> |
| 136 | </configuration> |
| 137 | </plugin> |
| 138 | <plugin> |
| 139 | <groupId>org.apache.maven.plugins</groupId> |
| 140 | <artifactId>maven-compiler-plugin</artifactId> |
dependabot[bot] | 55fcf8d | 2023-02-27 18:58:07 +0000 | [diff] [blame] | 141 | <version>3.11.0</version> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 142 | <configuration> |
Marc Kupietz | d30ad6d | 2023-09-06 08:08:32 +0200 | [diff] [blame] | 143 | <release>17</release> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 144 | <showDeprecation>true</showDeprecation> |
| 145 | <annotationProcessorPaths> |
| 146 | <path> |
| 147 | <groupId>info.picocli</groupId> |
| 148 | <artifactId>picocli-codegen</artifactId> |
Marc Kupietz | db4eacc | 2023-09-06 07:59:18 +0200 | [diff] [blame] | 149 | <version>4.7.5</version> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 150 | </path> |
| 151 | </annotationProcessorPaths> |
| 152 | <compilerArgs> |
| 153 | <arg>-Aproject=${project.groupId}/${project.artifactId} |
| 154 | </arg> |
| 155 | </compilerArgs> |
| 156 | </configuration> |
| 157 | <executions> |
| 158 | <!-- Replacing default-compile as it is treated specially by maven --> |
| 159 | <execution> |
| 160 | <id>default-compile</id> |
| 161 | <phase>none</phase> |
| 162 | </execution> |
| 163 | <!-- Replacing default-testCompile as it is treated specially by |
| 164 | maven --> |
| 165 | <execution> |
| 166 | <id>default-testCompile</id> |
| 167 | <phase>none</phase> |
| 168 | </execution> |
| 169 | <execution> |
| 170 | <id>java-compile</id> |
| 171 | <phase>compile</phase> |
| 172 | <goals> |
| 173 | <goal>compile</goal> |
| 174 | </goals> |
| 175 | </execution> |
| 176 | <execution> |
| 177 | <id>java-test-compile</id> |
| 178 | <phase>test-compile</phase> |
| 179 | <goals> |
| 180 | <goal>testCompile</goal> |
| 181 | </goals> |
| 182 | </execution> |
| 183 | </executions> |
| 184 | </plugin> |
| 185 | |
| 186 | <plugin> |
| 187 | <groupId>org.apache.maven.plugins</groupId> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 188 | <artifactId>maven-jar-plugin</artifactId> |
dependabot[bot] | c2ca369 | 2023-03-02 18:57:00 +0000 | [diff] [blame] | 189 | <version>3.3.0</version> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 190 | <configuration> |
| 191 | <archive> |
| 192 | <manifest> |
| 193 | <addClasspath>true</addClasspath> |
| 194 | <classpathPrefix>lib/</classpathPrefix> |
Marc Kupietz | 751868b | 2020-09-25 17:59:38 +0200 | [diff] [blame] | 195 | <mainClass>de.ids_mannheim.korap.tokenizer.Main</mainClass> |
Marc Kupietz | f8b7d95 | 2023-09-08 08:00:55 +0200 | [diff] [blame] | 196 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 197 | </manifest> |
| 198 | </archive> |
| 199 | </configuration> |
| 200 | </plugin> |
| 201 | |
| 202 | <plugin> |
| 203 | <groupId>de.jflex</groupId> |
| 204 | <artifactId>jflex-maven-plugin</artifactId> |
dependabot[bot] | 719de21 | 2023-03-13 18:57:52 +0000 | [diff] [blame] | 205 | <version>1.9.1</version> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 206 | <executions> |
| 207 | <execution> |
| 208 | <goals> |
| 209 | <goal>generate</goal> |
| 210 | </goals> |
| 211 | </execution> |
| 212 | </executions> |
| 213 | </plugin> |
Marc Kupietz | 8192509 | 2020-09-07 15:16:51 +0200 | [diff] [blame] | 214 | |
| 215 | <plugin> |
| 216 | <groupId>org.apache.maven.plugins</groupId> |
| 217 | <artifactId>maven-assembly-plugin</artifactId> |
Marc Kupietz | db4eacc | 2023-09-06 07:59:18 +0200 | [diff] [blame] | 218 | <version>3.6.0</version> |
Marc Kupietz | 8192509 | 2020-09-07 15:16:51 +0200 | [diff] [blame] | 219 | <configuration> |
Marc Kupietz | f4df712 | 2020-09-14 10:23:53 +0200 | [diff] [blame] | 220 | <appendAssemblyId>true</appendAssemblyId> |
Marc Kupietz | 8192509 | 2020-09-07 15:16:51 +0200 | [diff] [blame] | 221 | <descriptors> |
| 222 | <descriptor>src/assembly/src-distribution.xml</descriptor> |
| 223 | <descriptor>src/assembly/bin-distribution.xml</descriptor> |
| 224 | </descriptors> |
| 225 | <archive> |
| 226 | <manifest> |
Marc Kupietz | 751868b | 2020-09-25 17:59:38 +0200 | [diff] [blame] | 227 | <mainClass>de.ids_mannheim.korap.tokenizer.Main</mainClass> |
Marc Kupietz | f8b7d95 | 2023-09-08 08:00:55 +0200 | [diff] [blame] | 228 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
Marc Kupietz | 8192509 | 2020-09-07 15:16:51 +0200 | [diff] [blame] | 229 | </manifest> |
| 230 | </archive> |
| 231 | </configuration> |
| 232 | <executions> |
| 233 | <execution> |
| 234 | <id>make-assembly</id> |
| 235 | <phase>package</phase> |
| 236 | <goals> |
| 237 | <goal>single</goal> |
| 238 | </goals> |
| 239 | </execution> |
| 240 | </executions> |
| 241 | </plugin> |
Marc Kupietz | f4df712 | 2020-09-14 10:23:53 +0200 | [diff] [blame] | 242 | <plugin> |
Marc Kupietz | c419d5b | 2020-09-17 15:21:26 +0200 | [diff] [blame] | 243 | <groupId>org.codehaus.mojo</groupId> |
| 244 | <artifactId>appassembler-maven-plugin</artifactId> |
dependabot[bot] | af0b2b9 | 2020-12-09 08:13:16 +0000 | [diff] [blame] | 245 | <version>2.1.0</version> |
Marc Kupietz | c419d5b | 2020-09-17 15:21:26 +0200 | [diff] [blame] | 246 | <executions> |
| 247 | <execution> |
| 248 | <phase>package</phase> |
| 249 | <goals> |
| 250 | <goal>assemble</goal> |
| 251 | </goals> |
| 252 | </execution> |
| 253 | </executions> |
| 254 | <configuration> |
| 255 | <binFolder>bin</binFolder> |
| 256 | <binFileExtensions> |
Marc Kupietz | 4128bee | 2023-09-07 11:53:31 +0200 | [diff] [blame] | 257 | <unix /> |
Marc Kupietz | c419d5b | 2020-09-17 15:21:26 +0200 | [diff] [blame] | 258 | </binFileExtensions> |
| 259 | <programs> |
| 260 | <program> |
Marc Kupietz | 751868b | 2020-09-25 17:59:38 +0200 | [diff] [blame] | 261 | <mainClass>de.ids_mannheim.korap.tokenizer.Main</mainClass> |
Marc Kupietz | c419d5b | 2020-09-17 15:21:26 +0200 | [diff] [blame] | 262 | <id>koraptokenizer</id> |
| 263 | </program> |
| 264 | </programs> |
| 265 | </configuration> |
| 266 | </plugin> |
Marc Kupietz | 45d2dba | 2020-10-13 19:13:35 +0200 | [diff] [blame] | 267 | <plugin> |
| 268 | <artifactId>maven-dependency-plugin</artifactId> |
Marc Kupietz | db4eacc | 2023-09-06 07:59:18 +0200 | [diff] [blame] | 269 | <version>3.6.0</version> |
Marc Kupietz | 45d2dba | 2020-10-13 19:13:35 +0200 | [diff] [blame] | 270 | <executions> |
| 271 | <execution> |
| 272 | <id>analyze</id> |
| 273 | <goals> |
| 274 | <goal>analyze-only</goal> |
| 275 | </goals> |
| 276 | <configuration> |
| 277 | <failOnWarning>true</failOnWarning> |
| 278 | <outputXML>true</outputXML> |
| 279 | </configuration> |
| 280 | </execution> |
| 281 | </executions> |
| 282 | </plugin> |
Marc Kupietz | d1dc848 | 2023-09-07 21:28:23 +0200 | [diff] [blame] | 283 | <plugin> |
| 284 | <groupId>org.apache.maven.plugins</groupId> |
| 285 | <artifactId>maven-javadoc-plugin</artifactId> |
| 286 | <version>3.5.0</version> |
| 287 | <configuration> |
| 288 | <doclint>all,-missing</doclint> |
| 289 | <tags> |
| 290 | <tag> |
| 291 | <name>apiNote</name> |
| 292 | <placement>a</placement> |
| 293 | <head>API Note:</head> |
| 294 | </tag> |
| 295 | </tags> |
| 296 | </configuration> |
Marc Kupietz | 938510c | 2023-09-08 08:39:04 +0200 | [diff] [blame] | 297 | <executions> |
| 298 | <execution> |
| 299 | <id>attach-javadocs</id> |
| 300 | <phase>package</phase> |
| 301 | <goals> |
| 302 | <goal>aggregate-jar</goal> |
| 303 | </goals> |
| 304 | </execution> |
| 305 | </executions> |
Marc Kupietz | d1dc848 | 2023-09-07 21:28:23 +0200 | [diff] [blame] | 306 | </plugin> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 307 | </plugins> |
| 308 | </build> |
| 309 | |
| 310 | <dependencies> |
Marc Kupietz | c419d5b | 2020-09-17 15:21:26 +0200 | [diff] [blame] | 311 | <dependency> |
| 312 | <groupId>info.picocli</groupId> |
| 313 | <artifactId>picocli</artifactId> |
Marc Kupietz | db4eacc | 2023-09-06 07:59:18 +0200 | [diff] [blame] | 314 | <version>4.7.5</version> |
Marc Kupietz | c419d5b | 2020-09-17 15:21:26 +0200 | [diff] [blame] | 315 | </dependency> |
| 316 | |
Marc Kupietz | 8192509 | 2020-09-07 15:16:51 +0200 | [diff] [blame] | 317 | <!-- https://mvnrepository.com/artifact/org.apache.opennlp/opennlp-tools --> |
| 318 | <dependency> |
| 319 | <groupId>org.apache.opennlp</groupId> |
| 320 | <artifactId>opennlp-tools</artifactId> |
Marc Kupietz | d30ad6d | 2023-09-06 08:08:32 +0200 | [diff] [blame] | 321 | <version>2.3.0</version> |
Marc Kupietz | 8192509 | 2020-09-07 15:16:51 +0200 | [diff] [blame] | 322 | </dependency> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 323 | <dependency> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 324 | <groupId>junit</groupId> |
| 325 | <artifactId>junit</artifactId> |
dependabot[bot] | 52dd64d | 2021-02-15 07:28:02 +0000 | [diff] [blame] | 326 | <version>4.13.2</version> |
Gregor Middell | 9968d7a | 2022-05-27 09:52:45 +0200 | [diff] [blame] | 327 | <scope>test</scope> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 328 | </dependency> |
Marc Kupietz | 793f85d | 2020-09-08 14:40:24 +0200 | [diff] [blame] | 329 | <dependency> |
Marc Kupietz | 5c6df03 | 2020-09-29 22:19:38 +0200 | [diff] [blame] | 330 | <groupId>io.github.classgraph</groupId> |
| 331 | <artifactId>classgraph</artifactId> |
Marc Kupietz | db4eacc | 2023-09-06 07:59:18 +0200 | [diff] [blame] | 332 | <version>4.8.162</version> |
Marc Kupietz | 5c6df03 | 2020-09-29 22:19:38 +0200 | [diff] [blame] | 333 | </dependency> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 334 | </dependencies> |
Marc Kupietz | 3367773 | 2020-09-04 22:07:39 +0200 | [diff] [blame] | 335 | </project> |