From 0b5886d66347b1a9477ad71be8be7e0501706517 Mon Sep 17 00:00:00 2001 From: Christopher Bohn <bohn@unl.edu> Date: Tue, 1 Sep 2020 12:15:59 -0500 Subject: [PATCH] updated POM to force use of Java version 8 --- code_size/pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/code_size/pom.xml b/code_size/pom.xml index 65fbca3..4c9dd4c 100644 --- a/code_size/pom.xml +++ b/code_size/pom.xml @@ -12,6 +12,15 @@ </properties> <build> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <source>8</source> + <target>8</target> + </configuration> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> -- GitLab