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