eclipse中maven项目打不开builder path的解决办法

来源:互联网 发布:网络营销优化 编辑:程序博客网 时间:2024/05/20 13:17

在该项目下找到.project打开将以下代码添加进去


  1. <buildSpec>  
  2.      <buildCommand>  
  3.           <name>org.eclipse.jdt.core.javabuilder</name>  
  4.           <arguments>  
  5.           </arguments>  
  6.      </buildCommand>  
  7.      <buildCommand>  
  8.           <name>org.eclipse.m2e.core.maven2Builder</name>  
  9.           <arguments>  
  10.           </arguments>  
  11.      </buildCommand>  
  12. </buildSpec>  
  13. <natures>  
  14.      <nature>org.eclipse.jdt.core.javanature</nature>  
  15.      <nature>org.eclipse.m2e.core.maven2Nature</nature>  
  16. </natures>

阅读全文
0 0
原创粉丝点击