RestIntegTestTask fails because of missed log4j-core dependency (#1815)
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
This commit is contained in:
parent
01e1b94e47
commit
65813b8320
|
@ -94,6 +94,12 @@ public class RestTestUtil {
|
|||
} else {
|
||||
project.getDependencies()
|
||||
.add(sourceSet.getImplementationConfigurationName(), "org.opensearch.test:framework:" + VersionProperties.getOpenSearch());
|
||||
// The log4j-core is optional dependency of the org.opensearch.test:framework. needs explicit introduction
|
||||
project.getDependencies()
|
||||
.add(
|
||||
sourceSet.getImplementationConfigurationName(),
|
||||
"org.apache.logging.log4j:log4j-core:" + VersionProperties.getVersions().get("log4j")
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue