jerqi commented on PR #9431:
URL: https://github.com/apache/gravitino/pull/9431#issuecomment-3631711324
Could you add some rules in the file `build.gradle.kts` in the line 132 to
avoid similar issues?
```
replaceRegex(
"Use Guava Sets instead of shadowed Glassfish Sets",
"import\\s+org\\.glassfish\\.jersey\\.internal\\.guava\\.Sets;",
"import com.google.common.collect.Sets;"
)
replaceRegex(
"Use Guava Maps instead of shadowed Glassfish Maps",
"import\\s+org\\.glassfish\\.jersey\\.internal\\.guava\\.Maps;",
"import com.google.common.collect.Maps;"
)
replaceRegex(
"Use Guava Lists instead of shadowed Glassfish Lists",
"import\\s+org\\.glassfish\\.jersey\\.internal\\.guava\\.Lists;",
"import com.google.common.collect.Lists;"
)
```
--
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]