Skip to content

Commit da92d19

Browse files
bcorsoDagger Team
authored andcommitted
Drop latest XProcessing jars into Dagger.
The latest XProcessing jars require an update to Kotln and KSP dependency, so I've updated those in our gradle tests. RELNOTES=Drop latest XProcessing jars. Requires users to update to KSP 1.9.24-1.0.20 PiperOrigin-RevId: 658533119
1 parent 4dcf006 commit da92d19

11 files changed

Lines changed: 17 additions & 17 deletions

File tree

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,10 @@ http_archive(
147147

148148
load("@io_bazel_rules_kotlin//kotlin:repositories.bzl", "kotlin_repositories", "kotlinc_version")
149149

150-
KOTLIN_VERSION = "1.9.23"
150+
KOTLIN_VERSION = "1.9.24"
151151

152152
# Get from https://github.com/JetBrains/kotlin/releases/
153-
KOTLINC_RELEASE_SHA = "93137d3aab9afa9b27cb06a824c2324195c6b6f6179d8a8653f440f5bd58be88"
153+
KOTLINC_RELEASE_SHA = "eb7b68e01029fa67bc8d060ee54c12018f2c60ddc438cf21db14517229aa693b"
154154

155155
kotlin_repositories(
156156
compiler_release = kotlinc_version(
@@ -203,7 +203,7 @@ GRPC_VERSION = "1.2.0"
203203

204204
INCAP_VERSION = "0.2"
205205

206-
KSP_VERSION = KOTLIN_VERSION + "-1.0.19"
206+
KSP_VERSION = KOTLIN_VERSION + "-1.0.20"
207207

208208
MAVEN_VERSION = "3.3.3"
209209

java/dagger/hilt/android/plugin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
buildscript {
22
ext {
3-
kotlin_version = "1.9.20"
3+
kotlin_version = "1.9.24"
44
agp_version = System.getenv('AGP_VERSION') ?: "7.2.0"
5-
ksp_version = "$kotlin_version-1.0.14"
5+
ksp_version = "$kotlin_version-1.0.20"
66
pluginArtifactId = 'hilt-android-gradle-plugin'
77
pluginId = 'com.google.dagger.hilt.android'
88
}
20.2 KB
Binary file not shown.

javatests/artifacts/dagger-android-ksp/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
buildscript {
1818
ext {
1919
agp_version = "8.1.0"
20-
kotlin_version = "1.9.20"
21-
ksp_version = "$kotlin_version-1.0.14"
20+
kotlin_version = "1.9.24"
21+
ksp_version = "$kotlin_version-1.0.20"
2222
}
2323
repositories {
2424
google()

javatests/artifacts/dagger-ksp/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
buildscript {
1818
ext {
1919
dagger_version = "LOCAL-SNAPSHOT"
20-
kotlin_version = "1.9.20"
21-
ksp_version = "$kotlin_version-1.0.14"
20+
kotlin_version = "1.9.24"
21+
ksp_version = "$kotlin_version-1.0.20"
2222
junit_version = "4.13"
2323
truth_version = "1.0.1"
2424
}

javatests/artifacts/dagger/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
buildscript {
1818
ext {
1919
dagger_version = "LOCAL-SNAPSHOT"
20-
kotlin_version = "1.9.20"
21-
ksp_version = "$kotlin_version-1.0.14"
20+
kotlin_version = "1.9.24"
21+
ksp_version = "$kotlin_version-1.0.20"
2222
junit_version = "4.13"
2323
truth_version = "1.0.1"
2424
}

javatests/artifacts/dagger/lazyclasskey/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ buildscript {
1919
dagger_version = 'LOCAL-SNAPSHOT'
2020
// AGP is set below 7.2.0 on purpose to be able to obfuscate debug apk.
2121
agp_version = "7.1.2"
22-
kotlin_version = '1.9.20'
22+
kotlin_version = '1.9.24'
2323
}
2424
repositories {
2525
google()

javatests/artifacts/hilt-android/lazyclasskey/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ buildscript {
1919
hilt_version = 'LOCAL-SNAPSHOT'
2020
// AGP is set below 7.2.0 on purpose to be able to obfuscate debug apk.
2121
agp_version = "7.1.2"
22-
kotlin_version = '1.9.20'
22+
kotlin_version = '1.9.24'
2323
}
2424
repositories {
2525
google()

javatests/artifacts/hilt-android/simple/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
buildscript {
1818
ext {
1919
dagger_version = 'LOCAL-SNAPSHOT'
20-
kotlin_version = '1.9.20'
20+
kotlin_version = '1.9.24'
2121
agp_version = System.getenv('AGP_VERSION') ?: "7.1.2"
2222
}
2323
repositories {

javatests/artifacts/hilt-android/simpleKotlin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
buildscript {
1818
ext {
19-
kotlin_version = '1.9.20'
20-
ksp_version = "$kotlin_version-1.0.14"
19+
kotlin_version = '1.9.24'
20+
ksp_version = "$kotlin_version-1.0.20"
2121
agp_version = System.getenv('AGP_VERSION') ?: "7.1.2"
2222
}
2323
repositories {

0 commit comments

Comments
 (0)