From 0060a8268fd25015a0929d20bed33b02e3b197c6 Mon Sep 17 00:00:00 2001 From: James Taylor Date: Thu, 19 Sep 2024 15:51:44 +0100 Subject: [PATCH] Revert Gradle plugin versions to 0.36.0 The Gradle plugin does not always get released with a new Galasa version so there is no 0.37.0 version See: - galasa-dev/projectmanagement#1991 - galasa-dev/projectmanagement#1999 Signed-off-by: James Taylor --- src/markdown-pages/docs/upgrading.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/markdown-pages/docs/upgrading.md b/src/markdown-pages/docs/upgrading.md index 78de496d..925e9605 100644 --- a/src/markdown-pages/docs/upgrading.md +++ b/src/markdown-pages/docs/upgrading.md @@ -34,12 +34,12 @@ Galasa releases 0.35.0 and earlier support the use of Gradle versions 6.8.x, 6.9 To use Gradle version 8.0 or later to create Galasa projects and build and compile Galasa test code, complete the following steps: -1. Edit the `build.gradle` file in the OBR directory of your parent project, setting the plug-in values at the top of the file to version `0.37.0`, as shown in the following example: +1. Edit the `build.gradle` file in the OBR directory of your parent project, setting the plug-in values at the top of the file to version `0.36.0`, as shown in the following example: ``` plugins { ... -id 'dev.galasa.obr' version '0.37.0' -id 'dev.galasa.testcatalog' version '0.37.0' +id 'dev.galasa.obr' version '0.36.0' +id 'dev.galasa.testcatalog' version '0.36.0' ... } ``` @@ -51,11 +51,11 @@ tasks.withType(PublishToMavenLocal) { task -> task.dependsOn mergetestcat } ``` -3. In each test project `build.gradle` file, set the `dev.galasa.tests` plug-in to version `0.37.0` to ensure that the build uses the correct plug-in. +3. In each test project `build.gradle` file, set the `dev.galasa.tests` plug-in to version `0.36.0` to ensure that the build uses the correct plug-in. ``` plugins { ... -id 'dev.galasa.tests' version '0.37.0' +id 'dev.galasa.tests' version '0.36.0' ... } ```