1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-23 20:14:49 +02:00

compileJava: Add --release = 8

This commit is contained in:
Paul Schaub 2023-05-09 20:09:49 +02:00
parent a369f1c103
commit 7234b42144
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -30,6 +30,10 @@ allprojects {
apply plugin: 'jacoco'
apply plugin: 'checkstyle'
compileJava {
options.release = 8
}
// Only generate jar for submodules
// without this we would generate an empty pgpainless.jar for the project root
// https://stackoverflow.com/a/25445035