You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2015/05/16 18:04:13 UTC

incubator-tinkerpop git commit: Change scope of testing deps in gremlin-core. TINKERPOP3-687

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 76c42bff2 -> 2d8e3fa63


Change scope of testing deps in gremlin-core. TINKERPOP3-687

These were incorrectly scoped when they were brought over from gremlin-test.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/2d8e3fa6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/2d8e3fa6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/2d8e3fa6

Branch: refs/heads/master
Commit: 2d8e3fa639ca628305cbf7e6c092754613dcb5e7
Parents: 76c42bf
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Sat May 16 12:03:11 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Sat May 16 12:03:11 2015 -0400

----------------------------------------------------------------------
 gremlin-core/pom.xml | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2d8e3fa6/gremlin-core/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-core/pom.xml b/gremlin-core/pom.xml
index 0bda91d..62281e8 100644
--- a/gremlin-core/pom.xml
+++ b/gremlin-core/pom.xml
@@ -82,16 +82,19 @@ limitations under the License.
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
             <version>${junit.version}</version>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-all</artifactId>
             <version>1.9.5</version>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.hamcrest</groupId>
             <artifactId>hamcrest-all</artifactId>
             <version>1.3</version>
+            <scope>test</scope>
         </dependency>
     </dependencies>
     <build>