aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorTeddy Wing2023-04-26 00:14:22 +0200
committerTeddy Wing2023-04-26 00:14:22 +0200
commitcaf0512b09360f2e29329d1eba7933273b4a79c8 (patch)
treeac30c97f31919e1e7563c39aca45fc5e7faa1e92 /pom.xml
parentc61818f5cfb9905c0e7a26b532c70d46a73691fa (diff)
downloadpdf-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.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index c60298c..982b75c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>