Bump references to Develocity Gradle plugin from 4.0 to 4.0.1

This commit is contained in:
bot-githubaction 2025-04-26 02:32:18 +00:00 committed by daz
parent 9e440181cd
commit e12df82938
No known key found for this signature in database
11 changed files with 15 additions and 15 deletions

View File

@ -1,5 +1,5 @@
plugins {
id "com.gradle.develocity" version "4.0"
id "com.gradle.develocity" version "4.0.1"
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.2.1"
}

View File

@ -1,5 +1,5 @@
plugins {
id("com.gradle.develocity") version "4.0"
id("com.gradle.develocity") version "4.0.1"
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.2.1"
}

View File

@ -1,5 +1,5 @@
plugins {
id "com.gradle.develocity" version "4.0"
id "com.gradle.develocity" version "4.0.1"
}
develocity {

View File

@ -1,5 +1,5 @@
plugins {
id "com.gradle.develocity" version "4.0"
id "com.gradle.develocity" version "4.0.1"
}
develocity {

View File

@ -1,5 +1,5 @@
plugins {
id "com.gradle.develocity" version "4.0"
id "com.gradle.develocity" version "4.0.1"
}
develocity {

View File

@ -30,11 +30,11 @@ jobs:
matrix:
gradle: ['current', '7.6.2', '6.9.4', '5.6.4']
os: ${{fromJSON(inputs.runner-os)}}
plugin-version: ['3.16.2', '4.0']
plugin-version: ['3.16.2', '4.0.1']
include:
- plugin-version: '3.16.2'
accessKeyEnv: GRADLE_ENTERPRISE_ACCESS_KEY
- plugin-version: '4.0'
- plugin-version: '4.0.1'
accessKeyEnv: DEVELOCITY_ACCESS_KEY
runs-on: ${{ matrix.os }}
env:
@ -82,7 +82,7 @@ jobs:
matrix:
gradle: ['current', '7.6.2', '6.9.4', '5.6.4']
os: ${{fromJSON(inputs.runner-os)}}
plugin-version: ['3.16.2', '4.0']
plugin-version: ['3.16.2', '4.0.1']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
@ -126,7 +126,7 @@ jobs:
matrix:
gradle: ['current', '7.6.2', '6.9.4', '5.6.4']
os: ${{fromJSON(inputs.runner-os)}}
plugin-version: [ '3.16.2', '4.0' ]
plugin-version: [ '3.16.2', '4.0.1' ]
runs-on: ubuntu-latest
steps:
- name: Checkout sources
@ -157,7 +157,7 @@ jobs:
matrix:
gradle: ['current', '7.6.2', '6.9.4', '5.6.4']
os: ${{fromJSON(inputs.runner-os)}}
plugin-version: [ '3.16.2', '4.0' ]
plugin-version: [ '3.16.2', '4.0.1' ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources

View File

@ -844,7 +844,7 @@ Here's a minimal example:
run: ./gradlew build
```
This configuration will automatically apply `v4.0` of the [Develocity Gradle plugin](https://docs.gradle.com/develocity/gradle-plugin/), and publish build scans to https://develocity.your-server.com.
This configuration will automatically apply `v4.0.1` of the [Develocity Gradle plugin](https://docs.gradle.com/develocity/gradle-plugin/), and publish build scans to https://develocity.your-server.com.
This example assumes that the `develocity.your-server.com` server allows anonymous publishing of build scans.
In the likely scenario that your Develocity server requires authentication, you will also need to pass a valid [Develocity access key](https://docs.gradle.com/develocity/gradle-plugin/#via_environment_variable) taken from a secret:

View File

@ -34,7 +34,7 @@ export async function setup(config: BuildScanConfig): Promise<void> {
// except if they are defined in the configuration
if (config.getBuildScanPublishEnabled()) {
maybeExportVariable('DEVELOCITY_INJECTION_ENABLED', 'true')
maybeExportVariable('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', '4.0')
maybeExportVariable('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', '4.0.1')
maybeExportVariable('DEVELOCITY_INJECTION_CCUD_PLUGIN_VERSION', '2.1')
maybeExportVariable('DEVELOCITY_INJECTION_TERMS_OF_USE_URL', config.getBuildScanTermsOfUseUrl())
maybeExportVariable('DEVELOCITY_INJECTION_TERMS_OF_USE_AGREE', config.getBuildScanTermsOfUseAgree())

View File

@ -1,5 +1,5 @@
plugins {
id "com.gradle.develocity" version "4.0"
id "com.gradle.develocity" version "4.0.1"
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.2.1"
}

View File

@ -16,7 +16,7 @@ import java.nio.file.Files
import java.util.zip.GZIPOutputStream
class BaseInitScriptTest extends Specification {
static final String DEVELOCITY_PLUGIN_VERSION = '4.0'
static final String DEVELOCITY_PLUGIN_VERSION = '4.0.1'
static final String CCUD_PLUGIN_VERSION = '2.1'
static final TestGradleVersion GRADLE_3_X = new TestGradleVersion(GradleVersion.version('3.5.1'), 7, 9)

View File

@ -248,7 +248,7 @@ task expectFailure {
when:
settingsFile.text = """
plugins {
id 'com.gradle.develocity' version '4.0' apply(false)
id 'com.gradle.develocity' version '4.0.1' apply(false)
}
gradle.settingsEvaluated {
apply plugin: 'com.gradle.develocity'