Gradle 在 Mac 上使用 Mac 端口安装:Gradle 家在哪里?
Gradle on Mac installed using MacPorts: where is Gradle home?
我使用 MacPorts 安装了 Gradle,但现在找不到 Gradle 主页。例如 Eclipse 向我询问位置,但我不知道:
我尝试指定从 which gradle
:
获得的路径
$ which gradle
/opt/local/bin/gradle
但是不行。那么,Gradle家在哪里?
原来MacPorts在安装/升级Gradle时告诉你Gradle家。安装日志结尾如下:
---> Some of the ports you installed have notes:
gradle has the following notes:
Remember to set the environment variable GRADLE_HOME
to the path to the gradle distribution:
/opt/local/share/java/gradle
所以在这种情况下正确的 Gradle 家是:
/opt/local/share/java/gradle
这在上面提到的 Eclipse 场景中有效。
我使用 MacPorts 安装了 Gradle,但现在找不到 Gradle 主页。例如 Eclipse 向我询问位置,但我不知道:
我尝试指定从 which gradle
:
$ which gradle
/opt/local/bin/gradle
但是不行。那么,Gradle家在哪里?
原来MacPorts在安装/升级Gradle时告诉你Gradle家。安装日志结尾如下:
---> Some of the ports you installed have notes:
gradle has the following notes:
Remember to set the environment variable GRADLE_HOME
to the path to the gradle distribution:
/opt/local/share/java/gradle
所以在这种情况下正确的 Gradle 家是:
/opt/local/share/java/gradle
这在上面提到的 Eclipse 场景中有效。