aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorTeddy Wing2023-04-24 01:29:28 +0200
committerTeddy Wing2023-04-24 01:29:28 +0200
commitf409b761be1a65908784d770db3617c2ca9838f3 (patch)
tree51001f7eaf5a98d63ed051111732806fdb9f8c2f /pom.xml
parent8c5a16e708c85cfbe0fd1d8b73defca761f54731 (diff)
downloadpdf-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.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 164523a..c60298c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>