vlsi commented on code in PR #6312:
URL: https://github.com/apache/jmeter/pull/6312#discussion_r3947866451
##########
src/bom-thirdparty/build.gradle.kts:
##########
@@ -146,5 +146,17 @@ dependencies {
api("xalan:serializer:2.7.3")
api("xalan:xalan:2.7.3")
api("xml-apis:xml-apis:1.4.01")
+ //FlatLaf: https://www.formdev.com/flatlaf/native-libraries/#gradle
+ val flatlafVersion = "3.7.2"
+ api("com.formdev:flatlaf:${flatlafVersion}" )
+ api("com.formdev:flatlaf:${flatlafVersion}:linux-x86_64@so")
Review Comment:
The idea is that
1) We use what the ecosystem uses: jackson, junit, mockito, etc have boms
for platforms. I don't mention JMeter here as I am biased here
2) Every individual FlatLaf artifact might (should) include bom constraint
as well (e.g. `com.formdev:flatlaf` could include contraint on `flatlaf-bom`).
That would enable automatic version alignment in case one of the artifacts
comes with a newer version (e.g. updated via transitive).
--
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]