Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit 198484d

Browse files
committed
Bump java dependencies in samples/tests
1 parent fce96e0 commit 198484d

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
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.enterprise" version "3.13.3"
3-
id "com.gradle.common-custom-user-data-gradle-plugin" version "1.10"
2+
id "com.gradle.enterprise" version "3.13.4"
3+
id "com.gradle.common-custom-user-data-gradle-plugin" version "1.11"
44
}
55

66
gradleEnterprise {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
dependencies {
1010
api("org.apache.commons:commons-math3:3.6.1")
11-
implementation("com.google.guava:guava:31.1-jre")
11+
implementation("com.google.guava:guava:32.0.1-jre")
1212

1313
testImplementation("org.junit.jupiter:junit-jupiter:5.9.3")
1414
}

.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.enterprise") version "3.13.3"
3-
id("com.gradle.common-custom-user-data-gradle-plugin") version "1.10"
2+
id("com.gradle.enterprise") version "3.13.4"
3+
id("com.gradle.common-custom-user-data-gradle-plugin") version "1.11"
44
}
55

66
gradleEnterprise {

.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.build-scan" version "3.13.3"
2+
id "com.gradle.build-scan" version "3.13.4"
33
}
44

55
gradleEnterprise {

.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.enterprise" version "3.13.3"
2+
id "com.gradle.enterprise" version "3.13.4"
33
}
44

55
gradleEnterprise {

test/init-scripts/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
testImplementation ('io.ratpack:ratpack-groovy-test:1.9.0') {
2121
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
2222
}
23-
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.15.1'
23+
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.15.2'
2424
}
2525

2626
test {

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.enterprise" version "3.13.3"
3-
id "com.gradle.common-custom-user-data-gradle-plugin" version "1.10"
2+
id "com.gradle.enterprise" version "3.13.4"
3+
id "com.gradle.common-custom-user-data-gradle-plugin" version "1.11"
44
}
55

66
gradleEnterprise {

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
@@ -137,7 +137,7 @@ class BaseInitScriptTest extends Specification {
137137
} else {
138138
"""
139139
plugins {
140-
id 'com.gradle.enterprise' version '3.13.3'
140+
id 'com.gradle.enterprise' version '3.13.4'
141141
}
142142
gradleEnterprise {
143143
server = '$mockScansServer.address'
@@ -163,7 +163,7 @@ class BaseInitScriptTest extends Specification {
163163
} else if (gradleVersion < GradleVersion.version('6.0')) {
164164
"""
165165
plugins {
166-
id 'com.gradle.build-scan' version '3.13.3'
166+
id 'com.gradle.build-scan' version '3.13.4'
167167
}
168168
gradleEnterprise {
169169
server = '$mockScansServer.address'

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
@@ -154,7 +154,7 @@ class TestBuildResultRecorder extends BaseInitScriptTest {
154154
when:
155155
settingsFile.text = """
156156
plugins {
157-
id 'com.gradle.enterprise' version '3.13.3' apply(false)
157+
id 'com.gradle.enterprise' version '3.13.4' apply(false)
158158
}
159159
gradle.settingsEvaluated {
160160
apply plugin: 'com.gradle.enterprise'

0 commit comments

Comments
 (0)