TINKERPOP-1130 Add gremlin-test back as compile scope. It can't be test scope since non-test code uses commons-io which comes from gremlin-test. Shouldn't be any harm in including gremlin-test this way as this is a utility module that isn't deployed or anything.
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/5e0cd198 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/5e0cd198 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/5e0cd198 Branch: refs/heads/TINKERPOP-1130 Commit: 5e0cd198f58daf3e8b8ddec508a9644e48c327a4 Parents: bb91365 Author: Stephen Mallette <[email protected]> Authored: Mon Dec 19 09:16:11 2016 -0500 Committer: Stephen Mallette <[email protected]> Committed: Tue Dec 20 16:02:25 2016 -0500 ---------------------------------------------------------------------- gremlin-tools/gremlin-io-test/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/5e0cd198/gremlin-tools/gremlin-io-test/pom.xml ---------------------------------------------------------------------- diff --git a/gremlin-tools/gremlin-io-test/pom.xml b/gremlin-tools/gremlin-io-test/pom.xml index 8fc6278..549afd1 100644 --- a/gremlin-tools/gremlin-io-test/pom.xml +++ b/gremlin-tools/gremlin-io-test/pom.xml @@ -21,11 +21,11 @@ <artifactId>tinkergraph-gremlin</artifactId> <version>${project.version}</version> </dependency> + <!-- gremlin-test needs to be compile scope as it provides commons-io --> <dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>gremlin-test</artifactId> <version>${project.version}</version> - <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId>
