我喜欢OrientDB 2.2.x. Eazy安装和配置,包括Gremlin图(2.6.0)。但我们的团队需要TinkerPop Gremlin 3.0。我知道这将在未来几个月内在OrientDB 3.0版本中提供。我现在想使用orientdb-gremlin的develop分支尝试一下。 https://github.com/orientechnologies/orientdb-gremlin/tree/develop
安装和配置OrientDB的GA版本的文档是超级的。但是,我很难找到orientdb-gremlin的开发分支。我在这里看到了OrientDB(而不是orientdb-gremlin)源代码安装的说明: http://orientdb.com/docs/2.2/Tutorial-Installation.html
这很有帮助。但是当我尝试编译orientdb-gremlin时,我收到了这个错误:
[错误] com.orientechnologies的不可解析的父POM:orientdb-gremlin-parent:[unknown-version]:找不到工件com.orientechnologies:orientdb-parent:pom:3.0.0-SNAPSHOT和&# 39; parent.relativePath'点在没有本地POM @第15行,第13列 - > [帮助2]
pom.xml文件的相关部分是:
<parent>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<relativePath/>
</parent>
我跑到这一点的命令:
git clone https://github.com/orientechnologies/orientdb-gremlin.git
cd orientdb-gremlin
git checkout develop
mvn clean install
(我正在运行MacOS 10.11.5,Oracle Java 1.8.0_92,Maven 3.3.9)