Questions tagged «tools.jar»

30
无法找到tools.jar
我正在用Java构建一个项目。 我有这个错误: Unable to locate tools.jar. Expected to find it in C:\Program Files\Java\jre6\lib\tools.jar 我已经安装了一个JDK和文件夹: C:\Program Files\Java\jre6\lib在我的系统中,但是文件tools.jar不存在。
181 java  tools.jar 

8
JDK tools.jar作为Maven依赖项
我想将JDK tools.jar作为编译依赖项。我发现了一些指示使用systemPath属性的示例,如下所示: <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <scope>system</scope> <systemPath>${java.home}/../lib/tools.jar</systemPath> </dependency> 问题是该路径对于Mac Os X不正确(但是对于Windows和Linux是正确的)。为此,正确的路径是$ {java.home} /../ Classes / classes.jar。 我正在寻找一种定义maven属性的方法,以便如果将系统检测为Mac Os X,则将值设置为$ {java.home} /../ Classes / classes.jar,否则将其设置为$ {java.home} /../ lib / tools.jar(就像可以使用ANT一样)。有人有主意吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.