Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <groupId>groupId</groupId> |
Marc Kupietz | 4a64b9c | 2021-10-07 18:53:19 +0200 | [diff] [blame] | 8 | <artifactId>totalngrams</artifactId> |
Marc Kupietz | fa273a5 | 2022-10-24 18:10:55 +0200 | [diff] [blame] | 9 | <version>2.1.0</version> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 10 | |
| 11 | <properties> |
| 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 13 | <maven.compiler.source>17</maven.compiler.source> |
| 14 | <maven.compiler.target>17</maven.compiler.target> |
| 15 | <!-- Use the release flag only if you are using Java 9+ --> |
| 16 | <!-- <maven.compiler.release>8</maven.compiler.release> --> |
| 17 | <!-- verbose is useful for debugging purposes --> |
| 18 | <maven.compiler.verbose>true</maven.compiler.verbose> </properties> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 19 | |
| 20 | <build> |
| 21 | <resources> |
| 22 | <resource> |
| 23 | <directory>src/main/xml</directory> |
| 24 | <includes> |
| 25 | <include>**/*.xml</include> |
| 26 | </includes> |
| 27 | </resource> |
Marc Kupietz | bd62aa0 | 2020-07-22 08:48:40 +0200 | [diff] [blame] | 28 | <resource> |
| 29 | <directory>src/main/resources</directory> |
| 30 | <includes> |
| 31 | <include>**/*.properties</include> |
| 32 | </includes> |
| 33 | </resource> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 34 | </resources> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 35 | |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 36 | <plugins> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 37 | |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 38 | <plugin> |
| 39 | <groupId>org.apache.maven.plugins</groupId> |
| 40 | <artifactId>maven-javadoc-plugin</artifactId> |
Marc Kupietz | ab91cf0 | 2022-11-08 08:43:48 +0100 | [diff] [blame] | 41 | <version>3.4.1</version> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 42 | <configuration> |
| 43 | <failOnError>false</failOnError> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 44 | <source>${maven.compiler.target}</source> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 45 | <javadocExecutable>${java.home}/bin/javadoc |
| 46 | </javadocExecutable> |
| 47 | </configuration> |
| 48 | <executions> |
| 49 | <execution> |
| 50 | <id>attach-javadocs</id> |
| 51 | <goals> |
| 52 | <goal>javadoc-no-fork</goal> |
| 53 | <goal>jar</goal> |
| 54 | </goals> |
| 55 | <configuration> |
| 56 | <failOnError>false</failOnError> |
| 57 | </configuration> |
| 58 | </execution> |
| 59 | </executions> |
| 60 | </plugin> |
| 61 | <plugin> |
| 62 | <groupId>org.apache.maven.plugins</groupId> |
| 63 | <artifactId>maven-jar-plugin</artifactId> |
| 64 | <version>3.2.0</version> |
| 65 | <configuration> |
| 66 | <archive> |
| 67 | <index>true</index> |
| 68 | <manifest> |
| 69 | <addClasspath>true</addClasspath> |
| 70 | <classpathPrefix>dependency/</classpathPrefix> |
Marc Kupietz | aaf46f1 | 2020-07-29 18:00:57 +0200 | [diff] [blame] | 71 | <mainClass>org.ids_mannheim.TotalNGrams</mainClass> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 72 | </manifest> |
| 73 | </archive> |
| 74 | </configuration> |
| 75 | </plugin> |
| 76 | <plugin> |
| 77 | <groupId>org.apache.maven.plugins</groupId> |
| 78 | <artifactId>maven-compiler-plugin</artifactId> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 79 | <version>3.10.1</version> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 80 | <configuration> |
| 81 | <!-- or whatever version you use --> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 82 | <source>${maven.compiler.source}</source> |
| 83 | <target>${maven.compiler.target}</target> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 84 | <showDeprecation>true</showDeprecation> |
| 85 | <annotationProcessorPaths> |
| 86 | <path> |
| 87 | <groupId>info.picocli</groupId> |
| 88 | <artifactId>picocli-codegen</artifactId> |
| 89 | <version>4.2.0</version> |
| 90 | </path> |
| 91 | </annotationProcessorPaths> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 92 | </configuration> |
| 93 | <executions> |
| 94 | <!-- Replacing default-compile as it is treated specially by maven --> |
| 95 | <execution> |
| 96 | <id>default-compile</id> |
| 97 | <phase>none</phase> |
| 98 | </execution> |
| 99 | <!-- Replacing default-testCompile as it is treated specially by |
| 100 | maven --> |
| 101 | <execution> |
| 102 | <id>default-testCompile</id> |
| 103 | <phase>none</phase> |
| 104 | </execution> |
| 105 | <execution> |
| 106 | <id>java-compile</id> |
| 107 | <phase>compile</phase> |
| 108 | <goals> |
| 109 | <goal>compile</goal> |
| 110 | </goals> |
| 111 | </execution> |
| 112 | <execution> |
| 113 | <id>java-test-compile</id> |
| 114 | <phase>test-compile</phase> |
| 115 | <goals> |
| 116 | <goal>testCompile</goal> |
| 117 | </goals> |
| 118 | </execution> |
| 119 | </executions> |
| 120 | </plugin> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 121 | |
| 122 | <plugin> |
| 123 | <artifactId>maven-assembly-plugin</artifactId> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 124 | <executions> |
| 125 | <execution> |
| 126 | <phase>package</phase> |
| 127 | <goals> |
| 128 | <goal>single</goal> |
| 129 | </goals> |
| 130 | </execution> |
| 131 | </executions> |
| 132 | <configuration> |
| 133 | <archive> |
| 134 | <index>true</index> |
| 135 | <manifest> |
| 136 | <addClasspath>true</addClasspath> |
| 137 | <classpathPrefix>dependency/</classpathPrefix> |
Marc Kupietz | aaf46f1 | 2020-07-29 18:00:57 +0200 | [diff] [blame] | 138 | <mainClass>org.ids_mannheim.TotalNGrams</mainClass> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 139 | </manifest> |
| 140 | </archive> |
| 141 | <descriptorRefs> |
| 142 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 143 | </descriptorRefs> |
Marc Kupietz | b66b832 | 2020-07-29 17:17:38 +0200 | [diff] [blame] | 144 | <appendAssemblyId>false</appendAssemblyId> |
| 145 | </configuration> |
| 146 | </plugin> |
| 147 | |
| 148 | <plugin> |
| 149 | <groupId>org.codehaus.mojo</groupId> |
| 150 | <artifactId>appassembler-maven-plugin</artifactId> |
Marc Kupietz | b6f601f | 2022-12-01 13:29:26 +0100 | [diff] [blame] | 151 | <version>2.1.0</version> |
Marc Kupietz | b66b832 | 2020-07-29 17:17:38 +0200 | [diff] [blame] | 152 | <executions> |
| 153 | <execution> |
| 154 | <phase>package</phase> |
| 155 | <goals> |
| 156 | <goal>assemble</goal> |
| 157 | </goals> |
| 158 | </execution> |
| 159 | </executions> |
| 160 | <configuration> |
Marc Kupietz | aaf46f1 | 2020-07-29 18:00:57 +0200 | [diff] [blame] | 161 | <binFolder>bin</binFolder> |
Marc Kupietz | 097f35a | 2022-11-08 13:28:38 +0100 | [diff] [blame] | 162 | <extraJvmArguments>-XX:MaxRAMPercentage=85 -Dgroovy.grape.enable=false</extraJvmArguments> |
Marc Kupietz | b66b832 | 2020-07-29 17:17:38 +0200 | [diff] [blame] | 163 | <binFileExtensions> |
Marc Kupietz | 983cfc1 | 2021-10-07 18:54:07 +0200 | [diff] [blame] | 164 | <unix/> |
Marc Kupietz | b66b832 | 2020-07-29 17:17:38 +0200 | [diff] [blame] | 165 | </binFileExtensions> |
| 166 | <programs> |
| 167 | <program> |
Marc Kupietz | aaf46f1 | 2020-07-29 18:00:57 +0200 | [diff] [blame] | 168 | <mainClass>org.ids_mannheim.TotalNGrams</mainClass> |
| 169 | <id>totalngrams</id> |
Marc Kupietz | b66b832 | 2020-07-29 17:17:38 +0200 | [diff] [blame] | 170 | </program> |
Marc Kupietz | 097f35a | 2022-11-08 13:28:38 +0100 | [diff] [blame] | 171 | <program> |
| 172 | <mainClass>org.ids_mannheim.GeneratePseudonymKey</mainClass> |
| 173 | <id>generate_pseudonym_key</id> |
| 174 | </program> |
| 175 | <program> |
| 176 | <mainClass>org.ids_mannheim.Pseudonymize</mainClass> |
| 177 | <id>pseudonymize</id> |
| 178 | </program> |
| 179 | <program> |
| 180 | <mainClass>org.ids_mannheim.FilterKeys</mainClass> |
| 181 | <id>filter_keys</id> |
| 182 | </program> |
Marc Kupietz | b66b832 | 2020-07-29 17:17:38 +0200 | [diff] [blame] | 183 | </programs> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 184 | </configuration> |
| 185 | </plugin> |
Marc Kupietz | cf6ec7d | 2020-07-29 18:00:08 +0200 | [diff] [blame] | 186 | <plugin> |
| 187 | <groupId>org.apache.maven.plugins</groupId> |
| 188 | <artifactId>maven-surefire-plugin</artifactId> |
Marc Kupietz | b6f601f | 2022-12-01 13:29:26 +0100 | [diff] [blame] | 189 | <version>3.0.0-M7</version> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 190 | <configuration> |
Marc Kupietz | 8250c4b | 2022-11-07 14:51:06 +0100 | [diff] [blame] | 191 | <forkCount>1C</forkCount> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 192 | <includes> |
| 193 | <include>**/*Test.java</include> |
| 194 | </includes> |
Marc Kupietz | 8250c4b | 2022-11-07 14:51:06 +0100 | [diff] [blame] | 195 | <argLine>-Xmx32768m</argLine> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 196 | </configuration> |
Marc Kupietz | cf6ec7d | 2020-07-29 18:00:08 +0200 | [diff] [blame] | 197 | </plugin> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 198 | </plugins> |
| 199 | </build> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 200 | |
| 201 | <profiles> |
| 202 | <profile> |
| 203 | <id>activate-this-only-outside-intellij</id> |
| 204 | <activation> |
| 205 | <property> |
| 206 | <name>!idea.version</name> |
| 207 | </property> |
| 208 | </activation> |
| 209 | |
| 210 | <build> |
| 211 | <plugins> |
| 212 | <plugin> |
| 213 | <artifactId>maven-compiler-plugin</artifactId> |
| 214 | <version>3.10.1</version> |
| 215 | <configuration> |
| 216 | <compilerId>groovy-eclipse-compiler</compilerId> |
| 217 | <compilerArguments> |
| 218 | <configScript>${project.basedir}/config.groovy</configScript> |
| 219 | </compilerArguments> |
| 220 | </configuration> |
| 221 | <dependencies> |
| 222 | <dependency> |
| 223 | <groupId>org.codehaus.groovy</groupId> |
| 224 | <artifactId>groovy-eclipse-compiler</artifactId> |
| 225 | <version>3.8.0</version> |
| 226 | </dependency> |
| 227 | <dependency> |
| 228 | <groupId>org.codehaus.groovy</groupId> |
| 229 | <artifactId>groovy-eclipse-batch</artifactId> |
| 230 | <version>4.0.6-02</version> |
| 231 | </dependency> |
| 232 | <dependency> |
| 233 | <groupId>org.apache.ivy</groupId> |
| 234 | <artifactId>ivy</artifactId> |
| 235 | <version>2.5.1</version> |
| 236 | </dependency> |
| 237 | </dependencies> |
| 238 | </plugin> |
| 239 | </plugins> |
| 240 | </build> |
| 241 | <dependencies> |
| 242 | <dependency> |
| 243 | <groupId>org.codehaus.groovy</groupId> |
| 244 | <artifactId>groovy-eclipse-compiler</artifactId> |
| 245 | <version>3.8.0</version> |
| 246 | </dependency> |
| 247 | <dependency> |
| 248 | <groupId>org.codehaus.groovy</groupId> |
| 249 | <artifactId>groovy-eclipse-batch</artifactId> |
| 250 | <version>4.0.6-02</version> |
| 251 | </dependency> |
| 252 | </dependencies> |
| 253 | |
| 254 | <repositories> |
| 255 | <repository> |
| 256 | <id>groovy-libs-release-local</id> |
| 257 | <url>https://groovy.jfrog.io/artifactory/plugins-release-local</url> |
| 258 | </repository> |
| 259 | </repositories> |
| 260 | |
| 261 | <pluginRepositories> |
| 262 | <pluginRepository> |
| 263 | <id>groovy-plugins-release-local</id> |
| 264 | <url>https://groovy.jfrog.io/artifactory/plugins-release-local</url> |
| 265 | </pluginRepository> |
| 266 | </pluginRepositories> |
| 267 | </profile> |
| 268 | </profiles> |
| 269 | |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 270 | <dependencies> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 271 | <dependency> |
| 272 | <groupId>info.picocli</groupId> |
| 273 | <artifactId>picocli</artifactId> |
Marc Kupietz | b6f601f | 2022-12-01 13:29:26 +0100 | [diff] [blame] | 274 | <version>4.7.0</version> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 275 | </dependency> |
Marc Kupietz | ba7c757 | 2020-07-23 13:49:56 +0200 | [diff] [blame] | 276 | <!-- https://mvnrepository.com/artifact/org.anarres/parallelgzip --> |
| 277 | <dependency> |
| 278 | <groupId>org.anarres</groupId> |
| 279 | <artifactId>parallelgzip</artifactId> |
Marc Kupietz | e23b6cb | 2020-07-24 16:21:41 +0200 | [diff] [blame] | 280 | <version>1.0.5</version> |
Marc Kupietz | ba7c757 | 2020-07-23 13:49:56 +0200 | [diff] [blame] | 281 | </dependency> |
Marc Kupietz | 6638bb2 | 2020-07-27 12:27:59 +0200 | [diff] [blame] | 282 | <dependency> |
| 283 | <groupId>org.junit.jupiter</groupId> |
| 284 | <artifactId>junit-jupiter</artifactId> |
Marc Kupietz | b6f601f | 2022-12-01 13:29:26 +0100 | [diff] [blame] | 285 | <version>5.9.1</version> |
Marc Kupietz | 6638bb2 | 2020-07-27 12:27:59 +0200 | [diff] [blame] | 286 | <scope>test</scope> |
| 287 | </dependency> |
Marc Kupietz | 2ea60bd | 2020-07-28 09:24:43 +0200 | [diff] [blame] | 288 | <dependency> |
| 289 | <groupId>org.bouncycastle</groupId> |
| 290 | <artifactId>bcprov-jdk15on</artifactId> |
Marc Kupietz | b6f4fab | 2022-10-13 12:38:05 +0200 | [diff] [blame] | 291 | <version>1.70</version> |
Marc Kupietz | 2ea60bd | 2020-07-28 09:24:43 +0200 | [diff] [blame] | 292 | </dependency> |
Marc Kupietz | b66b832 | 2020-07-29 17:17:38 +0200 | [diff] [blame] | 293 | <!-- https://mvnrepository.com/artifact/org.codehaus.mojo/appassembler-maven-plugin --> |
| 294 | <dependency> |
| 295 | <groupId>org.codehaus.mojo</groupId> |
| 296 | <artifactId>appassembler-maven-plugin</artifactId> |
| 297 | <version>2.1.0</version> |
| 298 | </dependency> |
Marc Kupietz | cf6ec7d | 2020-07-29 18:00:08 +0200 | [diff] [blame] | 299 | <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-surefire-plugin --> |
| 300 | <dependency> |
| 301 | <groupId>org.apache.maven.plugins</groupId> |
| 302 | <artifactId>maven-surefire-plugin</artifactId> |
Marc Kupietz | b6f601f | 2022-12-01 13:29:26 +0100 | [diff] [blame] | 303 | <version>3.0.0-M7</version> |
Marc Kupietz | cf6ec7d | 2020-07-29 18:00:08 +0200 | [diff] [blame] | 304 | </dependency> |
Marc Kupietz | ca29d55 | 2020-10-05 09:42:03 +0200 | [diff] [blame] | 305 | <dependency> |
| 306 | <groupId>org.jetbrains</groupId> |
| 307 | <artifactId>annotations</artifactId> |
Marc Kupietz | b6f4fab | 2022-10-13 12:38:05 +0200 | [diff] [blame] | 308 | <version>23.0.0</version> |
Marc Kupietz | ca29d55 | 2020-10-05 09:42:03 +0200 | [diff] [blame] | 309 | <scope>compile</scope> |
| 310 | </dependency> |
Marc Kupietz | b6f601f | 2022-12-01 13:29:26 +0100 | [diff] [blame] | 311 | <dependency> |
Marc Kupietz | 1b717be | 2021-09-15 16:36:11 +0200 | [diff] [blame] | 312 | <groupId>org.tukaani</groupId> |
| 313 | <artifactId>xz</artifactId> |
| 314 | <version>1.9</version> |
| 315 | </dependency> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 316 | <dependency> |
| 317 | <groupId>org.apache.groovy</groupId> |
| 318 | <artifactId>groovy</artifactId> |
| 319 | <version>4.0.6</version> |
| 320 | </dependency> |
| 321 | |
| 322 | <!-- https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-eclipse-batch --> |
| 323 | |
| 324 | <dependency> |
| 325 | <groupId>org.codehaus.gpars</groupId> |
| 326 | <artifactId>gpars</artifactId> |
| 327 | <version>1.2.1</version> |
| 328 | </dependency> |
| 329 | <dependency> |
| 330 | <groupId>org.apache.ivy</groupId> |
| 331 | <artifactId>ivy</artifactId> |
| 332 | <version>2.5.1</version> |
| 333 | <scope>compile</scope> |
| 334 | <optional>true</optional> |
| 335 | </dependency> |
| 336 | <dependency> |
| 337 | <groupId>info.picocli</groupId> |
| 338 | <artifactId>picocli-groovy</artifactId> |
Marc Kupietz | b6f601f | 2022-12-01 13:29:26 +0100 | [diff] [blame] | 339 | <version>4.7.0</version> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 340 | </dependency> |
| 341 | <dependency> |
| 342 | <groupId>org.apache.groovy</groupId> |
| 343 | <artifactId>groovy-cli-picocli</artifactId> |
| 344 | <version>4.0.6</version> |
| 345 | </dependency> |
| 346 | |
| 347 | <dependency> |
| 348 | <groupId>commons-cli</groupId> |
| 349 | <artifactId>commons-cli</artifactId> |
Marc Kupietz | b6f601f | 2022-12-01 13:29:26 +0100 | [diff] [blame] | 350 | <version>1.5.0</version> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 351 | </dependency> |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 352 | </dependencies> |
Marc Kupietz | 869bfb9 | 2022-11-06 20:38:40 +0100 | [diff] [blame] | 353 | |
| 354 | |
Marc Kupietz | a37cc9f | 2020-07-20 09:12:20 +0200 | [diff] [blame] | 355 | </project> |