Copilot commented on code in PR #819:
URL: https://github.com/apache/ranger/pull/819#discussion_r2723251141
##########
distro/src/main/assembly/tagsync.xml:
##########
@@ -76,6 +76,7 @@
<include>commons-collections:commons-collections:jar:${commons.collections.version}</include>
<include>commons-configuration:commons-configuration:jar:${commons.configuration1.version}</include>
<include>commons-io:commons-io:jar:${commons.io.version}</include>
+
<include>commons-lang:commons-lang</include>
Review Comment:
The commons-lang dependency is missing a version specification. Other
dependencies in this file follow the pattern
`groupId:artifactId:jar:${version.property}`. This dependency should include
`:jar:${commons.lang.version}` to maintain consistency and ensure version
control.
```suggestion
<include>commons-lang:commons-lang:jar:${commons.lang.version}</include>
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]