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 | |
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
-rw-r--r-- | api/pom.xml | 5 | ||||
-rw-r--r-- | daemon/pom.xml | 5 |
2 files changed, 6 insertions, 4 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> diff --git a/daemon/pom.xml b/daemon/pom.xml index 2081fb8..a9834aa 100644 --- a/daemon/pom.xml +++ b/daemon/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> |