From e226e8ccfa361a9cb1beded92e79b9f0ab5add1a Mon Sep 17 00:00:00 2001 From: Giedrius Trumpickas Date: Mon, 17 Jul 2023 15:35:16 -0400 Subject: [PATCH 1/4] JDK 11 compatibility --- pom.xml | 14 +++++++++++++- xacml-core/pom.xml | 8 ++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 329801f99..085ad4f80 100644 --- a/pom.xml +++ b/pom.xml @@ -139,6 +139,18 @@ cglib-nodep 2.2 + + jakarta.xml.bind + jakarta.xml.bind-api + 2.3.3 + compile + + + com.sun.xml.bind + jaxb-impl + 2.3.8 + runtime + @@ -167,7 +179,7 @@ maven-compiler-plugin 1.8 - 1.8 + 11 diff --git a/xacml-core/pom.xml b/xacml-core/pom.xml index 77bc65cd5..796464c89 100644 --- a/xacml-core/pom.xml +++ b/xacml-core/pom.xml @@ -18,6 +18,14 @@ cglib cglib-nodep + + jakarta.xml.bind + jakarta.xml.bind-api + + + com.sun.xml.bind + jaxb-impl + From b588e69d289da7fd35cf68f31abc0b3701b6b41d Mon Sep 17 00:00:00 2001 From: Giedrius Trumpickas Date: Mon, 17 Jul 2023 15:53:11 -0400 Subject: [PATCH 2/4] JDK 11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 085ad4f80..9fe3ba66e 100644 --- a/pom.xml +++ b/pom.xml @@ -178,7 +178,7 @@ org.apache.maven.plugins maven-compiler-plugin - 1.8 + 11 11 From adf206acb2e5530ce8687c224fc73857355b265a Mon Sep 17 00:00:00 2001 From: Giedrius Trumpickas Date: Mon, 17 Jul 2023 15:57:48 -0400 Subject: [PATCH 3/4] Fixed security issues --- pom.xml | 2 +- xacml-json/pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9fe3ba66e..294375e38 100644 --- a/pom.xml +++ b/pom.xml @@ -29,7 +29,7 @@ 1.7.32 1.2.8 3.1 - 24.1.1-jre + 32.0.0-jre 1.2 3.0.2 UTF-8 diff --git a/xacml-json/pom.xml b/xacml-json/pom.xml index 450c1dee2..a5d0bf2f2 100644 --- a/xacml-json/pom.xml +++ b/xacml-json/pom.xml @@ -18,7 +18,7 @@ com.google.code.gson gson - 2.2.2 + 2.8.9 compile From 0d93f65b716814867b45c6d947f8b6c9e71cc422 Mon Sep 17 00:00:00 2001 From: Giedrius Trumpickas Date: Mon, 17 Jul 2023 16:01:29 -0400 Subject: [PATCH 4/4] JDK 11 --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 66b96e91e..aa2ee37a5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ on: push: branches: [ master ] pull_request: - branches: [ master, 1.3.x ] + branches: [ master, 1.5.x ] jobs: @@ -20,10 +20,10 @@ jobs: - name: Check out uses: actions/checkout@v2 - uses: ouzi-dev/commit-status-updater@v1.1.0 - - name: Set up JDK 8 + - name: Set up JDK 11 uses: actions/setup-java@v2 with: - java-version: '8' + java-version: '11' distribution: 'adopt' cache: maven - name: Build with Maven