Repository: logging-chainsaw Updated Branches: refs/heads/master 99e527104 -> db1a2451b
Use Java 1.6 as default minimum version Java 8 does not support compiling against a source version of 1.4 or 1.5 anymore, so this increases the default minimum version for compatibility reasons. Project: http://git-wip-us.apache.org/repos/asf/logging-chainsaw/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-chainsaw/commit/db1a2451 Tree: http://git-wip-us.apache.org/repos/asf/logging-chainsaw/tree/db1a2451 Diff: http://git-wip-us.apache.org/repos/asf/logging-chainsaw/diff/db1a2451 Branch: refs/heads/master Commit: db1a2451b517a12cf91de80932e4aa0a6f745bbf Parents: 99e5271 Author: Matt Sicker <[email protected]> Authored: Sat Oct 14 13:05:47 2017 -0500 Committer: Matt Sicker <[email protected]> Committed: Sat Oct 14 13:05:47 2017 -0500 ---------------------------------------------------------------------- pom.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-chainsaw/blob/db1a2451/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 3e307cb..d0bee79 100644 --- a/pom.xml +++ b/pom.xml @@ -138,7 +138,8 @@ <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> - <source>1.4</source> + <source>1.6</source> + <target>1.6</target> </configuration> </plugin> <plugin>
