Skip to content

Commit

Permalink
Revert Gradle plugin versions to 0.36.0
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
jt-nti committed Sep 19, 2024
1 parent f4e7da2 commit 0060a82
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/markdown-pages/docs/upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
...
}
```
Expand All @@ -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'
...
}
```
Expand Down

0 comments on commit 0060a82

Please sign in to comment.