com.sun:tools:jar的'dependencies.dependency.systemPath'必须指定一个绝对值

时间:2019-10-07 07:47:27

标签: gradle

处理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

1 个答案:

答案 0 :(得分:0)

在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>

`