将自动生成的 LibGDX gradle 项目导入 Eclipse 时出现问题
Problem when importing auto-generated LibGDX gradle project into eclipse
我想开始学习 LibGDX 框架,因此一开始使用 Setup 应用程序生成新项目听起来很方便。当我试图将它作为 gradle 项目导入到 eclipse IDE 时,我的问题出现了。我得到的错误信息如下:
Description Resource Path Location Type Could not run build action
using Gradle distribution
'https://services.gradle.org/distributions/gradle-5.4.1-bin.zip'.
Build file 'E:\Workspace\Eclipse\LibGDX\test\desktop\build.gradle'
line: 27 A problem occurred evaluating project ':desktop'. Could not
get unknown property 'classesDir' for main classes of type
org.gradle.api.internal.tasks.DefaultSourceSetOutput. build.gradle /test/desktop line
27 Gradle Error Marker
因为我是 Gradle 的新手,我现在真的不知道该怎么做。
我已经尝试删除我的 .grade/wrapper/dist 目录并让 LibGDX 安装程序重新下载它。此外,安装应用程序使用的版本是 4.6,所以我尝试在导入中使用它,但没有成功。
当使用安装程序中使用的 gradle 版本时,我遇到了另一条错误消息:
Description Resource Path Location Type Could not create an instance
of Tooling API implementation using the specified Gradle distribution
'https://services.gradle.org/distributions/gradle-4.6-bin.zip'. Could
not create service of type FileMetadataAccessor using
NativeServices.createFileMetadataAccessor(). Could not determine java
version from '11.0.3'. test line 0 Gradle Error Marker
如果您需要更多信息,请随时询问,我真的不知道您可能需要什么。
提前致谢!
"classesDir" 在 gradle 5 中被弃用并替换为 "classesDirs"。
如果您 运行 遇到任何其他更新问题,您可能会发现 this link 有帮助。
我想开始学习 LibGDX 框架,因此一开始使用 Setup 应用程序生成新项目听起来很方便。当我试图将它作为 gradle 项目导入到 eclipse IDE 时,我的问题出现了。我得到的错误信息如下:
Description Resource Path Location Type Could not run build action using Gradle distribution 'https://services.gradle.org/distributions/gradle-5.4.1-bin.zip'. Build file 'E:\Workspace\Eclipse\LibGDX\test\desktop\build.gradle' line: 27 A problem occurred evaluating project ':desktop'. Could not get unknown property 'classesDir' for main classes of type org.gradle.api.internal.tasks.DefaultSourceSetOutput. build.gradle /test/desktop line 27 Gradle Error Marker
因为我是 Gradle 的新手,我现在真的不知道该怎么做。
我已经尝试删除我的 .grade/wrapper/dist 目录并让 LibGDX 安装程序重新下载它。此外,安装应用程序使用的版本是 4.6,所以我尝试在导入中使用它,但没有成功。
当使用安装程序中使用的 gradle 版本时,我遇到了另一条错误消息:
Description Resource Path Location Type Could not create an instance of Tooling API implementation using the specified Gradle distribution 'https://services.gradle.org/distributions/gradle-4.6-bin.zip'. Could not create service of type FileMetadataAccessor using NativeServices.createFileMetadataAccessor(). Could not determine java version from '11.0.3'. test line 0 Gradle Error Marker
如果您需要更多信息,请随时询问,我真的不知道您可能需要什么。
提前致谢!
"classesDir" 在 gradle 5 中被弃用并替换为 "classesDirs"。
如果您 运行 遇到任何其他更新问题,您可能会发现 this link 有帮助。