-
Notifications
You must be signed in to change notification settings - Fork 62
Update dependency com.google.cloud:google-cloud-datastore to v2.32.2 #419
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
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 |
|---|---|---|
|
|
@@ -758,7 +758,7 @@ | |
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-enforcer-plugin</artifactId> | ||
| <version>3.6.1</version> | ||
| <version>3.6.2</version> | ||
|
Comment on lines
760
to
+761
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. The version for |
||
| <executions> | ||
| <execution> | ||
| <id>enforce-maven</id> | ||
|
|
||
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.
As the TODO comment on line 223 suggests, it would be better to manage the version of
maven-dependency-pluginin the<pluginManagement>section of the rootpom.xml. This version is duplicated in several modules (jetty121_assembly/pom.xml,jetty12_assembly/pom.xml,sdk_assembly/pom.xml).Centralizing the version in the parent POM would improve maintainability and ensure consistency across the project. You could add this plugin to
<pluginManagement>in the rootpom.xmland then remove the<version>tag from all child modules.