idea开发工具的项目导入到eclipse中总是报错

  • Post author:
  • Post category:其他


1:

1 problem was encountered while building the effective model for org.codehaus.mojo:aspectj-maven-plugin:1.8 [ERROR] ‘dependencies.dependency.systemPath’

for com.sun:tools:jar must specify an absolute path but is ${toolsjarSystemPath} @

解决这个问题:
(1):下载一个绿色版本的jdk,里面没有包含jre的;

(2):eclipse -project-build path-不要使用jre的,要使用jdk的目录就可以了;
2: build path- no actions avariables

这个要求再.project文件中,添加如下

<natures>

<nature>org.eclipse.m2e.core.maven2Nature</nature>

<nature>org.eclipse.jdt.core.javanature</nature>

</natures>



版权声明:本文为baiducheng原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。