| Age | Commit message (Collapse) | Author | 
 | 
I'm not using tests here, so rather than keep useless tests cluttering
the project I decided to remove them.
This causes the `mvn package` task to fail, so I added a skip test
configuration on the Maven Surefire plugin as described by smp7d
(https://stackoverflow.com/users/395975/smp7d) on Stack Overflow:
https://stackoverflow.com/questions/7456006/maven-package-install-without-test-skip-tests/7502723#7502723
 | 
 | 
The previous one wouldn't compile because I used hyphens in my package
name. Regenerate the project structure replacing the hyphens with
underscores:
    $ mvn archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-simple -DarchetypeVersion=1.4
    ...
    Define value for property 'groupId': com.teddywing.pdf_form_replace_font2
    Define value for property 'artifactId': pdf-form-replace-font2
    Define value for property 'version' 1.0-SNAPSHOT: : 0.0.1-SNAPSHOT
    Define value for property 'package' com.teddywing.pdf_form_replace_font2: :
    Confirm properties configuration:
    groupId: com.teddywing.pdf_form_replace_font2
    artifactId: pdf-form-replace-font2
    version: 0.0.1-SNAPSHOT
    package: com.teddywing.pdf_form_replace_font2
     Y: :
 | 
 | 
I followed the Maven Getting Started
(https://maven.apache.org/guides/getting-started/index.html) guide to
set up a project structure so I could use it to manage dependencies. I
picked the 'maven-archetype-simple' archetype
(https://maven.apache.org/archetypes/maven-archetype-simple/).
This code was generated with the following command and interactive
prompts:
    $ mvn archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-simple -DarchetypeVersion=1.4
    Define value for property 'groupId': com.teddywing.pdf-form-replace-font2
    Define value for property 'artifactId': pdf-form-replace-font2
    Define value for property 'version' 1.0-SNAPSHOT: : 0.0.1-SNAPSHOT
    Define value for property 'package' com.teddywing.pdf-form-replace-font2: :
    Confirm properties configuration:
    groupId: com.teddywing.pdf-form-replace-font2
    artifactId: pdf-form-replace-font2
    version: 0.0.1-SNAPSHOT
    package: com.teddywing.pdf-form-replace-font2
     Y: :
 |