diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index eb9de0aa..259db167 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -18,13 +18,13 @@ jobs: matrix: # test against latest update of each major Java version, as well as specific updates of LTS versions: RUNTIME: [ol, wlp] - RUNTIME_VERSION: [23.0.0.6, 23.0.0.3] + RUNTIME_VERSION: [23.0.0.6, 23.0.0.9] java: [17, 11, 8] exclude: - java: 8 - RUNTIME_VERSION: 23.0.0.3 + RUNTIME_VERSION: 23.0.0.6 - java: 17 - RUNTIME_VERSION: 23.0.0.3 + RUNTIME_VERSION: 23.0.0.6 name: ${{ matrix.RUNTIME }} ${{ matrix.RUNTIME_VERSION }}, Java ${{ matrix.java }}, Linux steps: # Checkout repos @@ -95,15 +95,15 @@ jobs: matrix: # test against latest update of each major Java version, as well as specific updates of LTS versions: RUNTIME: [ol, wlp] - RUNTIME_VERSION: [23.0.0.6, 23.0.0.3] + RUNTIME_VERSION: [23.0.0.6, 23.0.0.9] java: [17, 11, 8] exclude: - java: 8 - RUNTIME_VERSION: 23.0.0.3 + RUNTIME_VERSION: 23.0.0.6 - java: 8 RUNTIME: wlp - java: 17 - RUNTIME_VERSION: 23.0.0.3 + RUNTIME_VERSION: 23.0.0.6 name: ${{ matrix.RUNTIME }} ${{ matrix.RUNTIME_VERSION }}, Java ${{ matrix.java }}, Windows steps: # Checkout repos diff --git a/README.md b/README.md index 54a92ec5..27fc55d0 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ buildscript { } } dependencies { - classpath 'io.openliberty.tools:liberty-gradle-plugin:3.6.1' + classpath 'io.openliberty.tools:liberty-gradle-plugin:3.7' } } ``` @@ -73,13 +73,13 @@ buildscript { mavenLocal() } dependencies { - classpath ('io.openliberty.tools:liberty-ant-tasks:1.9.12') - classpath ('io.openliberty.tools:ci.common:1.8.25') + classpath ('io.openliberty.tools:liberty-ant-tasks:1.9.13') + classpath ('io.openliberty.tools:ci.common:1.8.27') } } plugins { - id "io.openliberty.tools.gradle.Liberty" version "3.6.1" + id "io.openliberty.tools.gradle.Liberty" version "3.7" } ``` diff --git a/build.gradle b/build.gradle index 24fd13b8..0ff8b080 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ apply plugin: "com.gradle.plugin-publish" archivesBaseName = 'liberty-gradle-plugin' group = 'io.openliberty.tools' -version = '3.6.3-SNAPSHOT' +version = '3.7-SNAPSHOT' repositories { mavenLocal() @@ -59,8 +59,8 @@ compileTestGroovy { targetCompatibility = JavaVersion.VERSION_1_7 } -def libertyAntVersion = "1.9.13-SNAPSHOT" -def libertyCommonVersion = "1.8.27-SNAPSHOT" +def libertyAntVersion = "1.9.13" +def libertyCommonVersion = "1.8.27" dependencies { implementation gradleApi()