-
Notifications
You must be signed in to change notification settings - Fork 1k
Fix latest dep tests #12596
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix latest dep tests #12596
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -34,8 +34,8 @@ testing { | |||
|
|
||||
| // the "library" configuration is not recognized by the test suite plugin | ||||
| if (latestDepTest) { | ||||
| implementation("io.vertx:vertx-kafka-client:+") | ||||
| implementation("io.vertx:vertx-codegen:+") | ||||
| implementation("io.vertx:vertx-kafka-client:latest.release") | ||||
| implementation("io.vertx:vertx-codegen:latest.release") | ||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. was it picking up SNAPSHOT version? could you tell from where?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. no it was picking up Line 34 in 29da88e
|
||||
| } else { | ||||
| implementation("io.vertx:vertx-kafka-client:3.6.0") | ||||
| implementation("io.vertx:vertx-codegen:3.6.0") | ||||
|
|
||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought only adding
latestDepTestLibrarywas enough to resolve this kind of issue?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So did I. I also would have thought that we ignore versions like
3.3.0-M1. My guess is that the problem here is that what is missing is not a random dependency but one of the parent poms. Perhaps this breaks it more thoroughly than usual.