maven项目添加log4j-1.2.15依赖出现Missing artifact com.sun.jmx:jmxri:jar:1.2.1错误 解决方法一:修改log4j.jar的版本为1.2.16或以上版本 解决方法二:用<exclusions>排除传递依赖 <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.…
使用pagehelper.3.4.2.jar时报错,应该是无法从网络上下载该jar. 我的解决方案是: 从网络上下载一个pagehelper.3.4.2.jar包,然后复制到.m2目录中 如我的目录是C:\Users\xx\.m2\repository\com\github\pagehelper\pagehelper\3.4.2-fix,然后重启eclipse就可以了. 下载地址: 链接: https://pan.baidu.com/s/1Pgw3h80VPhKJUbEMkq-VIA 提取码:…
在网上看的淘淘商城的项目,自己在配置maven项目的时候遇见了这个异常,按照网上教程试了试,一重启各种异常. 后来直接,就更改了自己的maven仓库就ok了. 解决方法: 对比一下,你就能够发现问题,你只需要用我上传的包.m2替换你的.m2就可以了,.m2文件包下载地址https://download.csdn.net/download/longyanchen/10387619,…
在使用m2eclipse插件时,在pom.xml中添加struts2-core.jar包后,需要依赖java运行时的tools.jar进行依赖.但是,此时eclipse无法读取tools包,出现如下错误: Missing artifact com.sun:tools:jar 1.5.0 解决办法一: 手动配置pom.xml,添加一个dependency如下: <dependency><groupId>com.sun</groupId><artifactId>…
今天同事在使用eclipse,引入一个新的maven工程时报错:      Missing artifact com.sun:tools:jar:1.6.0:system   这个问题很奇怪,相同的代码,运行到我本地的Eclipse中时,没有发现问题,说明应该是环境配置的问题.(JDK?maven,Eclipse?) 从网上找了很多资料,发现大家大部分都只给出了解决方案,没有给出出现此问题的原因. 从maven的官网上看:http://maven.apache.org/general.html#…
今天在用maven的时候遇到一个问题pom.xml提示Missing artifact com.sun:tools:jar:1.5.0 试过改eclipse的eclipse.ini文件,也试过在eclipse中改Installed JREs都不行. 后来google到这篇文章,就把问题解决了. http://www.myexception.cn/system/1177046.html pom.xml文件前边有个红叉,提示Missing artifact com.sun:tools:jar:1.5…
Missing artifact com.sun:tools:jar 1.7.0 解决办法一: 手动配置pom.xml,添加一个dependency如下: <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <scope>system</scope> <systemPath>${JAVA_HOME}/../lib/tool…
前一阵子下了最新的JavaEE版本号的eclipse,导入mavenproject之后,pom文件一直报Missing artifact com.sun:tools:jar:1.5.0.非常纳闷,tools.jar是jdk自带的jar包.查了一下pom依赖图,原来是struts-core依赖了这个jar包. 试了网上的各种方法,仅仅有把jdk的tools.jar拷贝到本地仓库,报错才消失. 详细解决的方法例如以下: 把D:\Program Files (x86)\Java\jdk1.6.0_10…
在配置Java + Robotframework时遇到的问题“Missing artifact com.sun:tools:jar” 1. 先检查一下eclipse或STS中的JDK路径配置是否正确(打开window-->preferences-->java-->installed jres 页面的窗口) 2. 在eclipse安装路径下找到eclipse.ini或STS.ini,将其文件打开,在文件中找到“-vmargs”,在“-vmargs”之前添加下面代码.其中 D:\tools\…
1.Missing artifact com.sun:tools:jar:1.5.0:system Could not resolve dependencies for project com.iflytek.whshgl:whshgl-report:war:0.0.1-SNAPSHOT: Could not find artifact com.sun:tools:jar:1.5.0 at specified path C:\java\jre/../lib/tools.jar <dependen…