From f27ddc918e6a793d8d235c01eb2c9c1f668ccec4 Mon Sep 17 00:00:00 2001 From: alexradzin Date: Wed, 4 Oct 2023 21:53:16 +0300 Subject: [PATCH] java compatibility back to 11 --- .github/workflows/integration-test.yml | 2 +- build.gradle | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 448169567..268324317 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -31,7 +31,7 @@ jobs: uses: actions/setup-java@v3 with: distribution: 'zulu' - java-version: '11' + java-version: '17' - name: Determine env variables run: | if [ "${{ github.event.inputs.environment }}" == 'staging' ]; then diff --git a/build.gradle b/build.gradle index 77a7c6627..6e50cd7a7 100644 --- a/build.gradle +++ b/build.gradle @@ -28,8 +28,8 @@ java { } compileJava { - sourceCompatibility = '17' - targetCompatibility = '17' + sourceCompatibility = '11' + targetCompatibility = '11' } configurations {