diff options
author | paladox <paladox@users.noreply.github.com> | 2017-03-18 19:17:34 +0000 |
---|---|---|
committer | Florian Zschocke <f.zschocke+git@gmail.com> | 2022-02-06 15:11:20 +0100 |
commit | 3d42f7b17e031c7e106c6f2f697dc76800ed8f87 (patch) | |
tree | 26d62ac107ecece07a9a1d431163bab0f400c320 | |
parent | ab19bce280a1920ec559dc522aa9a700c111dc8a (diff) | |
download | gitblit-3d42f7b17e031c7e106c6f2f697dc76800ed8f87.tar.gz gitblit-3d42f7b17e031c7e106c6f2f697dc76800ed8f87.zip |
Bump min java support to 1.8
Fixes #1218
-rw-r--r-- | build.moxie | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build.moxie b/build.moxie index 8e77d464..93cae54a 100644 --- a/build.moxie +++ b/build.moxie @@ -69,12 +69,12 @@ resourceDirectories: - test 'src/test/resources' - site 'src/site/resources' -# compile for Java 7 class format +# compile for Java 8 class format tasks: { 'mx:javac' : { - source: 1.7 - target: 1.7 - compiler: javac1.7 + source: 1.8 + target: 1.8 + compiler: javac1.8 encoding: UTF-8 # stop complaints about bootstrap classpath when compiling with Java 7 compilerArgs: '-Xlint:-options' |