首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在Mac上构建Neo4j失败

在Mac上构建Neo4j失败
EN

Stack Overflow用户
提问于 2015-02-28 22:44:41
回答 1查看 110关注 0票数 0

我在Github上克隆了主Neo4j并尝试构建它:

mvn全新安装-DfullBuild -Dlicense.skip=true

结果:

代码语言:javascript
复制
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] 
[INFO] Neo4j .............................................. SUCCESS [  1.917 s]
[INFO] Neo4j - Licensing configuration .................... SUCCESS [  0.769 s]
[INFO] Neo4j - Primitive Collections ...................... SUCCESS [ 43.278 s]
[INFO] Neo4j - IO ......................................... SUCCESS [01:50 min]
[INFO] Neo4j - CSV reading and parsing .................... SUCCESS [  5.461 s]
[INFO] Neo4j - Graph Database Kernel ...................... SUCCESS [03:59 min]
[INFO] Neo4j - JMX support ................................ SUCCESS [  7.138 s]
[INFO] Neo4j - Usage Data Collection ...................... SUCCESS [ 10.788 s]
[INFO] Neo4j - Monitor Logging ............................ SUCCESS [  7.750 s]
[INFO] Neo4j - Graphviz generation ........................ SUCCESS [  7.947 s]
[INFO] Neo4j - Lucene Index ............................... SUCCESS [01:45 min]
[INFO] Neo4j - Graph Algorithms ........................... SUCCESS [ 11.222 s]
[INFO] Neo4j - Graph Matching ............................. SUCCESS [  7.938 s]
[INFO] Neo4j - Community Cypher Build ..................... SUCCESS [  3.658 s]
[INFO] Neo4j - Cypher Compiler 2.2 ........................ SUCCESS [04:34 min]
[INFO] Neo4j - Cypher ..................................... SUCCESS [04:29 min]
[INFO] Neo4j - Consistency Checker ........................ SUCCESS [01:10 min]
[INFO] Neo4j - Community .................................. SUCCESS [02:22 min]
[INFO] Neo4j - Community .................................. SUCCESS [  0.079 s]
[INFO] Neo4j - Generic shell .............................. SUCCESS [01:19 min]
[INFO] Neo4j - Import Command Line Tool ................... SUCCESS [ 31.435 s]
[INFO] Neo4j - Examples ................................... SUCCESS [ 34.906 s]
[INFO] Neo4j - Server API ................................. SUCCESS [  7.443 s]
[INFO] Neo4j - Browser .................................... SUCCESS [ 57.323 s]
[INFO] Neo4j - Server ..................................... SUCCESS [04:31 min]
[INFO] Neo4j - Test Harness ............................... SUCCESS [ 26.720 s]
[INFO] Neo4j - Server Plugin Tests ........................ SUCCESS [ 14.821 s]
[INFO] Neo4j - Server Examples ............................ SUCCESS [ 25.881 s]
[INFO] Neo4j - UDC Integration ............................ SUCCESS [ 10.245 s]
[INFO] Neo4j - GraphGist .................................. SUCCESS [ 27.983 s]
[INFO] Neo4j - Cypher Documentation ....................... SUCCESS [01:42 min]
[INFO] Neo4j - Cypher Reference Card Tests ................ SUCCESS [ 27.326 s]
[INFO] Neo4j - Community Build ............................ SUCCESS [  0.077 s]
[INFO] Neo4j - Graph DB Monitoring and Management tools ... SUCCESS [ 10.148 s]
[INFO] Neo4j - Advanced ................................... SUCCESS [  8.685 s]
[INFO] Neo4j - Advanced Server ............................ SUCCESS [ 21.165 s]
[INFO] Neo4j - Advanced Build ............................. SUCCESS [  0.064 s]
[INFO] Neo4j - Query Logging .............................. SUCCESS [  8.720 s]
[INFO] Neo4j - Communication Package ...................... SUCCESS [ 18.359 s]
[INFO] Neo4j - Clustering Infrastructure .................. SUCCESS [ 25.807 s]
[INFO] Neo4j - Backup Tool ................................ SUCCESS [01:22 min]
[INFO] Neo4j - High Availability .......................... SUCCESS [24:19 min]
[INFO] Neo4j - Enterprise ................................. SUCCESS [ 10.279 s]
[INFO] Neo4j - Enterprise Server .......................... SUCCESS [07:02 min]
[INFO] Neo4j - Enterprise Performance Tests ............... SUCCESS [ 41.132 s]
[INFO] Neo4j - Enterprise Build ........................... SUCCESS [  0.056 s]
[INFO] Neo4j - Integration Tests .......................... SUCCESS [ 49.037 s]
[INFO] Neo4j - Page Cache Stress Tests .................... SUCCESS [  0.097 s]
[INFO] Neo4j Javadocs ..................................... SUCCESS [  9.582 s]
[INFO] Neo4j Cypher Reference Card ........................ SUCCESS [ 42.708 s]
[INFO] Neo4j - Reference Manual Contents .................. SUCCESS [  4.565 s]
[INFO] Neo4j - Reference Manual ........................... SUCCESS [09:49 min]
[INFO] Neo4j - Server Assembler ........................... SUCCESS [  1.083 s]
[INFO] Neo4j Community - Server Assembler ................. SUCCESS [  5.669 s]
[INFO] Neo4j Advanced - Server Assembler .................. SUCCESS [  5.255 s]
[INFO] Neo4j Enterprise - Server Assembler ................ SUCCESS [  5.249 s]
[INFO] Neo4j Desktop ...................................... SUCCESS [ 51.900 s]
[INFO] Neo4j Packaging Build .............................. SUCCESS [  0.049 s]
[INFO] Neo4j Debian Installers ............................ FAILURE [  4.538 s]
[INFO] Neo4j RPM Installers ............................... SKIPPED
[INFO] Neo4j Community RPM ................................ SKIPPED
[INFO] Neo4j Advanced RPM ................................. SKIPPED
[INFO] Neo4j Community RPM ................................ SKIPPED
[INFO] Neo4j Linux Installers ............................. SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 01:22 h
[INFO] Finished at: 2015-02-27T19:37:24+00:00
[INFO] Final Memory: 308M/493M
[INFO] -----------------------------------------------------------------------

我想为mac构建社区安装程序/包,我认为这是上面列表中的最后一个( Debian Linux安装程序),但由于Neo4j安装程序失败而被跳过,因为它找不到'debuild‘命令。解决这个问题的最佳方法是什么?

我发现缺少的命令是用来构建Debain包的,但我找不到在我的Mac上安装它的方法。

不熟悉mavern;如果Linux安装程序不依赖于Debian和可能的RPM安装程序,是否有方法将其从Mac上的构建中排除。

EN

回答 1

Stack Overflow用户

发布于 2015-02-28 23:58:22

在neo的pom.xml中,你会看到:

代码语言:javascript
复制
<profile>
  <id>neo-full-build</id>
  <activation>
    <activeByDefault>false</activeByDefault>
    <property>
      <name>fullBuild</name>
    </property>
  </activation>
  <modules>
    <module>manual</module>
    <module>packaging</module>
    <module>packaging/installer-linux</module>
  </modules>
  <properties>
    <attach-docs-phase>verify</attach-docs-phase>
  </properties>
</profile>

你看到包含<module>packaging/installer-linux</module>的那部分了吗?debian安装程序包就在它的下面。如果您删除这一行,我相信完整的构建将不会下降到该目录,试图构建debian包(或任何其他linux,例如redhat RPM)。

票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/28782970

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档