From 3c6960ef88170e941871338676154c6185a658b5 Mon Sep 17 00:00:00 2001 From: Aliaksej Mialeshka Date: Mon, 26 Feb 2024 16:34:01 +0100 Subject: [PATCH] update pipelines and README.md --- .github/workflows/release-maven-central.yml | 2 +- README.md | 5 +++++ azure-pipelines.yml | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-maven-central.yml b/.github/workflows/release-maven-central.yml index 75fd3f3..ff3dca3 100644 --- a/.github/workflows/release-maven-central.yml +++ b/.github/workflows/release-maven-central.yml @@ -18,7 +18,7 @@ jobs: - name: Step 2 - Set up Maven Central Repository uses: actions/setup-java@v3 with: - java-version: "8" + java-version: "11" distribution: "adopt" server-id: ossrh server-username: MVN_CENTRAL_USERNAME diff --git a/README.md b/README.md index fcf2ce5..6da8076 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,11 @@ Most of performed methods are logged using LOG4J, so you can easily see a histor We use interfaces where is possible, so you can implement your own version of target interface with no need to rewrite other classes. + +> ### Breaking news! +> Starting from v4.4.0 onwards, this package requires Java 11 or higher, as Selenium has stopped support of Java 8. +> The last version available for Java 8 is [v4.3.3](https://github.com/aquality-automation/aquality-selenium-java/releases/tag/v4.3.3) + ### Quick start To start the project using aquality.selenium framework, you can [download our template BDD project by this link.](https://github.com/aquality-automation/aquality-selenium-java-template) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index edc5c0c..308af4a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -25,7 +25,7 @@ jobs: mavenPomFile: 'pom.xml' mavenOptions: '-Xmx3072m' javaHomeOption: 'JDKVersion' - jdkVersionOption: '1.8' + jdkVersionOption: '11' jdkArchitectureOption: 'x64' publishJUnitResults: true testResultsFiles: '**/surefire-reports/TEST-*.xml' @@ -55,7 +55,7 @@ jobs: mavenPomFile: 'pom.xml' mavenOptions: '-Xmx3072m' javaHomeOption: 'JDKVersion' - jdkVersionOption: '1.8' + jdkVersionOption: '11' jdkArchitectureOption: 'x64' publishJUnitResults: true testResultsFiles: '**/surefire-reports/TEST-*.xml'