diff options
author | Teddy Wing | 2023-04-26 00:14:22 +0200 |
---|---|---|
committer | Teddy Wing | 2023-04-26 00:14:22 +0200 |
commit | caf0512b09360f2e29329d1eba7933273b4a79c8 (patch) | |
tree | ac30c97f31919e1e7563c39aca45fc5e7faa1e92 /pom.xml | |
parent | c61818f5cfb9905c0e7a26b532c70d46a73691fa (diff) | |
download | pdf-form-replace-font2-caf0512b09360f2e29329d1eba7933273b4a79c8.tar.bz2 |
Switch to Java 8
I had used Java 11 in order to use the `var` syntax, which seemed
pleasantly more concise, however, I discovered that the machine I want
to deploy this application to only has a Java 8 SDK, and I don't want to
bother messing with it and going on a potential yak shaving quest.
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,8 +16,8 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <maven.compiler.source>11</maven.compiler.source> - <maven.compiler.target>11</maven.compiler.target> + <maven.compiler.source>1.8</maven.compiler.source> + <maven.compiler.target>1.8</maven.compiler.target> </properties> <dependencies> |