有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java在Grobid中使用Gradle时出现如下错误

我正在尝试在Ubuntu 64位中安装Grobid

引自

https://grobid.readthedocs.io/en/latest/Install-Grobid/  


$/GROBID_LATEST_0.5.1/grobid-0.5.1$ ./gradlew clean install 

FAILURE: Build failed with an exception.

* What went wrong:
Failed to capture snapshot of input files for task ':grobid-core:compileJava' >property 'classpath' during up-to-date check.
> Error snapshotting jar [wipo-analysers-0.0.2.jar]

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

* Get more help at https://help.gradle.org

BUILD FAILED in 0s
6 actionable tasks: 1 executed, 5 up-to-date
$/GROBID_LATEST_0.5.1/grobid-0.5.1$ 

请帮我解决这个问题


共 (1) 个答案

  1. # 1 楼答案

    按照以下步骤解决问题

    $java -version
    

    删除java的最新版本(即10或11),因为gradle与java 10和11不兼容。Instal java 7/8/9

    $sudo apt-get purge openjdk-\*
    
    Then
    
    $ sudo apt-get update
    
    $apt-cache search openjdk
    $sudo apt-get install openjdk-8-jre openjdk-8-jdk
    $cd grobid
    
    $./gradlew run