-
Notifications
You must be signed in to change notification settings - Fork 195
💥 Use Temporal Failures for Nexus Error Serialization #2773
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
base: master
Are you sure you want to change the base?
Changes from all commits
296f927
8607ddb
0dec89d
3b8fe5e
4219704
3495885
3d44cf5
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 |
|---|---|---|
|
|
@@ -22,6 +22,7 @@ plugins { | |
|
|
||
| allprojects { | ||
| repositories { | ||
| mavenLocal() | ||
| mavenCentral() | ||
| } | ||
| } | ||
|
|
@@ -30,7 +31,7 @@ ext { | |
| // Platforms | ||
| grpcVersion = '1.75.0' // [1.38.0,) Needed for io.grpc.protobuf.services.HealthStatusManager | ||
| jacksonVersion = '2.15.4' // [2.9.0,) | ||
| nexusVersion = '0.4.0-alpha' | ||
| nexusVersion = '0.5.0-SNAPSHOT' | ||
|
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.
Useful? React with 👍 / 👎. |
||
| // we don't upgrade to 1.10.x because it requires kotlin 1.6. Users may use 1.10.x in their environments though. | ||
| micrometerVersion = project.hasProperty("edgeDepsTest") ? '1.13.6' : '1.9.9' // [1.0.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.
Accidentally committed local Maven repository configuration
High Severity
mavenLocal()has been added toallprojects.repositoriesand takes priority overmavenCentral(). This is typically used during local development to resolve SNAPSHOT dependencies (in this casenexusVersion = '0.5.0-SNAPSHOT'). HavingmavenLocal()in the main build file causes non-reproducible builds since different machines may have different artifacts in their local Maven cache. CI builds may fail or produce inconsistent results.