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

Java 在Grobid中使用Gradle时出现如下错误,java,gradle,grobid,Java,Gradle,Grobid,我正在尝试在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 fi

我正在尝试在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$ 

请帮我解决这个问题

按照以下步骤解决您的问题

$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
使用--stacktrace运行命令并查看输出。