-
Notifications
You must be signed in to change notification settings - Fork 873
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
Support slf4j to log4j2 #7656
Support slf4j to log4j2 #7656
Conversation
@@ -26,12 +26,62 @@ dependencies { | |||
} | |||
|
|||
tasks { | |||
test { |
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.
Nit: WDYT about using the test suites feature instead?
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.
I think I found a good solution, ptal
// this is needed for the async logging test | ||
testImplementation("com.lmax:disruptor:3.4.2") | ||
} | ||
|
||
tasks.withType<Test>().configureEach { | ||
systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean) |
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.
Nit: you could extract findProperty("testLatestDeps") as Boolean
to a variable
No description provided.