diff options
author | Teddy Wing | 2023-04-24 01:29:28 +0200 |
---|---|---|
committer | Teddy Wing | 2023-04-24 01:29:28 +0200 |
commit | f409b761be1a65908784d770db3617c2ca9838f3 (patch) | |
tree | 51001f7eaf5a98d63ed051111732806fdb9f8c2f /pom.xml | |
parent | 8c5a16e708c85cfbe0fd1d8b73defca761f54731 (diff) | |
download | pdf-form-replace-font2-f409b761be1a65908784d770db3617c2ca9838f3.tar.bz2 |
App.java: Start adding command line option parsing
Used the following resources to see how to parse command line options
using commons-cli:
- https://reintech.io/blog/java-command-line-applications-parsing-processing-arguments
- https://commons.apache.org/proper/commons-cli/usage.html
Reusing the options from 'pdf-form-replace-font'.
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -30,6 +30,13 @@ </dependency> <dependency> + <groupId>commons-cli</groupId> + <artifactId>commons-cli</artifactId> + <version>1.5.0</version> + <scope>compile</scope> + </dependency> + + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> |