Github user ilooner commented on a diff in the pull request:
https://github.com/apache/drill/pull/1202#discussion_r180252832
--- 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 --
@vrozov As we discussed offline drill-common-tests is not a dependency of
the vector project itself, it is a dependency required by a maven invocation
when a category is specified. For example in `mvn test
-DexcludedGroups="org.apache.drill.categories.SlowTest,org.apache.drill.categories.UnlikelyTest,org.apache.drill.categories.SecurityTest"`
the category classes are required by maven. However when `mvn test` is used
the category classes are not required by maven.
---