Github user ilooner commented on a diff in the pull request:
https://github.com/apache/drill/pull/1202#discussion_r180247017
--- Diff: exec/vector/pom.xml ---
@@ -69,6 +69,7 @@
<groupId>org.apache.drill</groupId>
<artifactId>drill-common</artifactId>
<version>${project.version}</version>
+ <scope>test</scope>
--- End diff --
The `<classifier>tests</classifier>` tag includes the test classes in
drill-common. The test category classes are included in
common/src/test/java/org/apache/drill/categories. So test category classes will
be accessible to maven. However, looks like I forgot the test scope so the test
classes and resources from drill-common were being included in Drill's standard
(non-test) classpath.
---