C:\ Users \ asker.gradle \ caches \ modules-2 \ files-2.1 \ org.crashub \ crash.shell \ 1.3.2 \ 887bc9980d3f6a39f0adc79caf5b655e3761d1a \ crash.shell-1.3.2.pom的处理失败:
com.sun:tools:jar的'dependencies.dependency.systemPath'必须指定绝对路径,但为/home/tclement/plf-release-tools/tools/jdk1.7.0_67/jre/../lib/tools.jar在org.crashub:crash.shell:1.3.2中

最佳答案

发现在pom文件.gradle \ caches \ modules-2 \ files-2.1 \ org.crashub \ crash.shell \ 1.3.2 \ 887bc9980d3f6a39f0adc79caf5b655e3761d1a \ crash.shell-1.3.2.pom中,系统路径是硬编码的。

使用以下命令更新路径
`

<dependency>
    <groupId>com.sun</groupId>
    <artifactId>tools</artifactId>
    <version>1.6</version>
    <scope>system</scope>
    <systemPath>${java.home}/lib/tools.jar</systemPath>
    <optional>true</optional>
</dependency>

`

09-26 14:09