Skip to content

Commit 9ab6ee6

Browse files
committed
Bump to version 2.0.2 of CCUDGP
1 parent fb5165d commit 9ab6ee6

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id "com.gradle.develocity" version "3.18.2"
3-
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0.1"
3+
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0.2"
44
}
55

66
develocity {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id("com.gradle.develocity") version "3.18.2"
3-
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.0.1"
3+
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.0.2"
44
}
55

66
develocity {

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
DEVELOCITY_INJECTION_ENABLED: true
3030
DEVELOCITY_URL: https://ge.solutions-team.gradle.com
3131
DEVELOCITY_PLUGIN_VERSION: ${{ matrix.plugin-version }}
32-
DEVELOCITY_CCUD_PLUGIN_VERSION: '2.0'
32+
DEVELOCITY_CCUD_PLUGIN_VERSION: '2.0.2'
3333
${{matrix.accessKeyEnv}}: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
3434
strategy:
3535
fail-fast: false
@@ -76,7 +76,7 @@ jobs:
7676
DEVELOCITY_INJECTION_ENABLED: true
7777
DEVELOCITY_URL: 'https://ge.solutions-team.gradle.com'
7878
DEVELOCITY_PLUGIN_VERSION: ${{ matrix.plugin-version }}
79-
DEVELOCITY_CCUD_PLUGIN_VERSION: '2.0'
79+
DEVELOCITY_CCUD_PLUGIN_VERSION: '2.0.2'
8080
strategy:
8181
fail-fast: false
8282
matrix:
@@ -117,7 +117,7 @@ jobs:
117117
DEVELOCITY_INJECTION_ENABLED: true
118118
DEVELOCITY_URL: 'https://localhost:3333/'
119119
DEVELOCITY_PLUGIN_VERSION: ${{ matrix.plugin-version }}
120-
DEVELOCITY_CCUD_PLUGIN_VERSION: '2.0'
120+
DEVELOCITY_CCUD_PLUGIN_VERSION: '2.0.2'
121121
# Access key also set as an env var, we want to check it does not leak
122122
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
123123
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}

sources/src/develocity/build-scan.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export async function setup(config: BuildScanConfig): Promise<void> {
88
if (config.getBuildScanPublishEnabled()) {
99
maybeExportVariable('DEVELOCITY_INJECTION_ENABLED', 'true')
1010
maybeExportVariable('DEVELOCITY_PLUGIN_VERSION', '3.18.2')
11-
maybeExportVariable('DEVELOCITY_CCUD_PLUGIN_VERSION', '2.0')
11+
maybeExportVariable('DEVELOCITY_CCUD_PLUGIN_VERSION', '2.0.2')
1212
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_URL', config.getBuildScanTermsOfUseUrl())
1313
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_AGREE', config.getBuildScanTermsOfUseAgree())
1414
}

sources/test/init-scripts/settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id "com.gradle.develocity" version "3.18.2"
3-
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0.1"
3+
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0.2"
44
}
55

66
develocity {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import java.util.zip.GZIPOutputStream
1717

1818
class BaseInitScriptTest extends Specification {
1919
static final String DEVELOCITY_PLUGIN_VERSION = '3.18.2'
20-
static final String CCUD_PLUGIN_VERSION = '2.0.1'
20+
static final String CCUD_PLUGIN_VERSION = '2.0.2'
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)

0 commit comments

Comments
 (0)