Maven项目Build path ----------No action available 解决方案

找到项目的.project文件,添加的内容如下:
 
 <buildSpec>
          <buildCommand>
               <name>org.eclipse.jdt.core.javabuilder</name>
               <arguments>
               </arguments>
          </buildCommand>
          <buildCommand>
               <name>org.eclipse.m2e.core.maven2Builder</name>
               <arguments>
               </arguments>
          </buildCommand>
     </buildSpec>
     <natures>
          <nature>org.eclipse.jdt.core.javanature</nature>
          <nature>org.eclipse.m2e.core.maven2Nature</nature>
     </natures>
原文地址:https://www.cnblogs.com/haojb/p/11527963.html