Skip to content

Conversation

@jaydeluca
Copy link
Member

Related to #15429

The BackgroundPreinitializingApplicationListener ignore is a common change amongst many of these modules, so that change is also present in some of the other PRs

@jaydeluca jaydeluca requested a review from a team as a code owner November 23, 2025 21:50
Comment on lines 25 to 29
if (latestDepTest) {
library("org.springframework.boot:spring-boot-starter-kafka:latest.release")
} else {
library("org.springframework.kafka:spring-kafka:2.7.0")
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is there no non-spring boot starter version now?

Copy link
Contributor

@laurit laurit Nov 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what if you leave library("org.springframework.kafka:spring-kafka:2.7.0") here and add
latestDepTestLibrary("org.springframework.boot:spring-boot-starter-kafka:latest.release") down below?

Comment on lines 46 to 48
val springKafkaVersion = if (latestDepTest) "org.springframework.boot:spring-boot-starter-kafka:latest.release" else "org.springframework.kafka:spring-kafka:2.7.0"
val springBootVersion = if (latestDepTest) "latest.release" else "2.5.3"
implementation(springKafkaVersion)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

when it's a whole different artifact I think I prefer

if (latestDepTest) {
implementation("..")
else {
implementation("..")
}

@trask trask enabled auto-merge (squash) November 25, 2025 20:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants