Github user vrozov commented on a diff in the pull request:
https://github.com/apache/drill/pull/1177#discussion_r176262322
--- Diff: common/pom.xml ---
@@ -113,20 +113,10 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
- <version>1.2.1</version>
- <executions>
- <execution>
- <phase>process-classes</phase>
- <goals>
- <goal>java</goal>
- </goals>
- </execution>
- </executions>
<configuration>
-
<mainClass>org.apache.drill.common.scanner.BuildTimeScan</mainClass>
- <arguments>
- <argument>${project.build.outputDirectory}</argument>
- </arguments>
+ <additionalClasspathElements>
+
<additionalClasspathElement>${project.basedir}/src/test/resources/</additionalClasspathElement>
--- End diff --
The `logback-test.xml` was not in the classpath before, but it did not
matter as slf4j did not bind to logback classic before anyway (it was not on
classpath).
---