偶尔 当Gradle STS扩展程序在启动Eclipse 3.7(Indigo)后尝试执行我的项目的gradle构建脚本时,我会收到以下错误安装了Gradle STS扩展,
Unable to start the daemon process. The exit value was: 1.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the user guide chapter on the daemon at http://gradle.org/docs/current/userguide/gradle_daemon.html
Please read below process output to find out more:
-----------------------
Error occurred during initialization of VM
Could not reserve enough space for object heap
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
Could not fetch model of type 'EclipseProject' using Gradle distribution 'http://services.gradle.org/distributions/gradle-1.0-bin.zip'.
这是我的系统规格:
这是这个插件的已知错误吗?有关如何修复的想法吗?
答案 0 :(得分:34)
在eclipse中,转到Window,Preferences,Gradle,Arguments 并在对话框中添加gradle jvmargs -Xms128m -Xmx512m :
答案 1 :(得分:13)
听起来好像偶尔,你的系统无法保留足够的内存来启动Gradle守护进程。项目是否包含gradle.properties
包含内存设置(org.gradle.jvmargs
)?或者,你在〜/ .gradle中有gradle.properties
吗?
答案 2 :(得分:5)
Gradle项目导入时遇到了同样的问题。 (Windows 7 64位,sts-3.2.0.RELEASE 32位,Java jdk1.7.0_13 32位)。
解决了在项目目录(= sts工作区)中创建 gradle.properties 文件的问题,内容为: org.gradle.jvmargs = -Xms128m -Xmx512m 。
注意-Xmx = 512m是我可以在我的系统上使用的JVM内存的最大大小。较大的Xmx内存大小会导致描述错误。