diff options
-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> |