我在Ubuntu上安装了Buildr,它可以从命令行运行良好。我还为Intellij IDEA安装了Buildr插件。但我无法从IDE运行compile
等命令。它给出了以下信息:
/usr/local/bin/buildr compile (in /path/to/project, development) Compiling scala-spike Compiling scala-spike into /path/to/project/target/classes Buildr aborted! RuntimeError : Are we forgetting something? JAVA_HOME not set.
但JAVA_HOME
已设置。命令echo $JAVA_HOME
打印安装Java的正确路径。
答案 0 :(得分:2)
确保在启动idea.sh时传递JAVA_HOME
。
尝试使用sh -c "export JAVA_HOME=/opt/java && $IDEA/bin/idea.sh"