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