Skip to content

Commit eef9b10

Browse files
committed
Bump Develocity and CCUD plugin versions
1 parent 8be796e commit eef9b10

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

.github/workflow-samples/groovy-dsl/settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.17.1"
3-
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0"
2+
id "com.gradle.develocity" version "3.17.2"
3+
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0.1"
44
}
55

66
develocity {

.github/workflow-samples/kotlin-dsl/settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id("com.gradle.develocity") version "3.17.1"
3-
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.0"
2+
id("com.gradle.develocity") version "3.17.2"
3+
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.0.1"
44
}
55

66
develocity {

.github/workflow-samples/no-wrapper-gradle-5/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.17.1"
2+
id "com.gradle.develocity" version "3.17.2"
33
}
44

55
develocity {

.github/workflow-samples/no-wrapper/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.17.1"
2+
id "com.gradle.develocity" version "3.17.2"
33
}
44

55
develocity {

.github/workflow-samples/non-executable-wrapper/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.17"
2+
id "com.gradle.develocity" version "3.17.2"
33
}
44

55
develocity {

.github/workflows/integ-test-inject-develocity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
matrix:
3434
gradle: [current, 7.6.2, 6.9.4, 5.6.4]
3535
os: ${{fromJSON(inputs.runner-os)}}
36-
plugin-version: [3.16.2, 3.17]
36+
plugin-version: [3.16.2, 3.17.2]
3737
runs-on: ${{ matrix.os }}
3838
steps:
3939
- name: Checkout sources

docs/setup-gradle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -720,10 +720,10 @@ Here's a minimal example:
720720
env:
721721
DEVELOCITY_INJECTION_ENABLED: true
722722
DEVELOCITY_URL: https://develocity.your-server.com
723-
DEVELOCITY_PLUGIN_VERSION: 3.17
723+
DEVELOCITY_PLUGIN_VERSION: 3.17.2
724724
```
725725

726-
This configuration will automatically apply `v3.17` of the [Develocity Gradle plugin](https://docs.gradle.com/develocity/gradle-plugin/), and publish build scans to https://develocity.your-server.com.
726+
This configuration will automatically apply `v3.17.2` of the [Develocity Gradle plugin](https://docs.gradle.com/develocity/gradle-plugin/), and publish build scans to https://develocity.your-server.com.
727727

728728
This example assumes that the `develocity.your-server.com` server allows anonymous publishing of build scans.
729729
In the likely scenario that your Develocity server requires authentication, you will also need to configure an additional environment variable

sources/src/build-scan.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export function setup(config: BuildScanConfig): void {
66
maybeExportVariable('DEVELOCITY_AUTO_INJECTION_CUSTOM_VALUE', 'gradle-actions')
77
if (config.getBuildScanPublishEnabled()) {
88
maybeExportVariable('DEVELOCITY_INJECTION_ENABLED', 'true')
9-
maybeExportVariable('DEVELOCITY_PLUGIN_VERSION', '3.17')
9+
maybeExportVariable('DEVELOCITY_PLUGIN_VERSION', '3.17.2')
1010
maybeExportVariable('DEVELOCITY_CCUD_PLUGIN_VERSION', '2.0')
1111
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_URL', config.getBuildScanTermsOfUseUrl())
1212
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_AGREE', config.getBuildScanTermsOfUseAgree())

sources/test/init-scripts/settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.17.1"
3-
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0"
2+
id "com.gradle.develocity" version "3.17.2"
3+
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0.1"
44
}
55

66
develocity {

sources/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/BaseInitScriptTest.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import java.nio.file.Files
1616
import java.util.zip.GZIPOutputStream
1717

1818
class BaseInitScriptTest extends Specification {
19-
static final String DEVELOCITY_PLUGIN_VERSION = '3.17'
20-
static final String CCUD_PLUGIN_VERSION = '2.0'
19+
static final String DEVELOCITY_PLUGIN_VERSION = '3.17.2'
20+
static final String CCUD_PLUGIN_VERSION = '2.0.1'
2121

2222
static final TestGradleVersion GRADLE_3_X = new TestGradleVersion(GradleVersion.version('3.5.1'), 7, 9)
2323
static final TestGradleVersion GRADLE_4_X = new TestGradleVersion(GradleVersion.version('4.10.3'), 7, 10)

sources/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/TestBuildResultRecorder.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class TestBuildResultRecorder extends BaseInitScriptTest {
190190
when:
191191
settingsFile.text = """
192192
plugins {
193-
id 'com.gradle.develocity' version '3.17' apply(false)
193+
id 'com.gradle.develocity' version '3.17.2' apply(false)
194194
}
195195
gradle.settingsEvaluated {
196196
apply plugin: 'com.gradle.develocity'

0 commit comments

Comments
 (0)