-
Notifications
You must be signed in to change notification settings - Fork 668
(build)version management for maven-pulgin and artifactId #766
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
Conversation
• Updated maven-shade-plugin to version 3.2.4 • Updated maven-surefire-plugin to version 3.0.0-M8 • Removed redundant version declarations across modules • Centralized plugin version management in the root POM
- revert property
<netty-tcnative-boringssl-static.version>2.0.48.Final</netty-tcnative-boringssl-static.version>
- manage netty-tcnative-boringssl-static's version in root pom.xml
```xml
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>${netty-tcnative-boringssl-static.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-classes</artifactId>
<version>${netty-tcnative-boringssl-static.version}</version>
</dependency>
```
use property `netty-tcnative-boringssl-static.version` in root pom.xml
|
Please update the changes.md about the changes you made. |
Centralized plugin version management in the root POM and Remove Redundant Declarations by PR apache#766
|
Build: Centralized plugin version management in the root POM and Remove Redundant Declarations by PR #766
Please review it again. I have updated the changes.md. thx |
|
@leeyazhou Do you have any new patches? I will initial the 9.5 release next week. |
No more questions for now. Then I'll finding the reason of some other questions that may be caued by grpc-netty. |
Build: Update Maven Plugin Versions and Remove Redundant Declarations
• Removed redundant version declarations across modules for
nettyandjunit• Remove duplicate artifactId declarations
jmh-generator-annprocessinapm-sniffer/apm-agent-core/pom.xml• Centralized plugin (
maven-shade-pluginandmaven-surefire-plugin) version management in the root POM• Centralized
nettyversion management in the root POM by addnetty-bom• (fix)Declare property
maven-docker-plugin.version