Move logback.xml so that it is not seen on its default location by the JVM running the tests

This commit is contained in:
Peter Palaga
2020-11-06 22:49:59 +01:00
parent 3e920024ae
commit d409ed7970
2 changed files with 1 additions and 1 deletions

View File

@@ -193,7 +193,7 @@ public class MvndTestExtension implements BeforeAllCallback, BeforeEachCallback,
final Path mvndPropertiesPath = testDir.resolve("mvnd.properties");
final Path localMavenRepository = deleteDir(testDir.resolve("local-maven-repo"));
final Path settingsPath = createSettings(testDir.resolve("settings.xml"));
final Path logback = Paths.get("src/test/resources/logback.xml").toAbsolutePath();
final Path logback = Paths.get("src/test/resources/logback/logback.xml").toAbsolutePath();
final Path home = deleteDir(testDir.resolve("home"));
final TestParameters parameters = new TestParameters(
testDir,