diff options
author | Manuel Bentele | 2021-12-16 07:47:16 +0100 |
---|---|---|
committer | Manuel Bentele | 2021-12-16 07:47:16 +0100 |
commit | 6cb9330830fd1d6ae8d5b359ab9659a11a6ef613 (patch) | |
tree | 7f3bc01b5cb12a7ec2662aef65f81f4f4c65ece2 /api | |
parent | Update version of Maven build plugins (diff) | |
download | taskman-lite-6cb9330830fd1d6ae8d5b359ab9659a11a6ef613.tar.gz taskman-lite-6cb9330830fd1d6ae8d5b359ab9659a11a6ef613.tar.xz taskman-lite-6cb9330830fd1d6ae8d5b359ab9659a11a6ef613.zip |
Update Java to version 8
Diffstat (limited to 'api')
-rw-r--r-- | api/pom.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/api/pom.xml b/api/pom.xml index a18c19e..0cc071b 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -19,8 +19,9 @@ <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> - <source>1.7</source> - <target>1.7</target> + <source>1.8</source> + <target>1.8</target> + <release>8</release> </configuration> </plugin> <plugin> |