其实就是网上说的那些方法,.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://blog.csdn.net/after_you/article/details/72103439加上
<nature>org.eclipse.jdt.core.javanature</nature>
就好使了;可是之前复制粘贴过去的也有这句怎么就是不行呢?
原来是少了
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>op</name>
<comment></comment>
<projects>
</projects>
xml的声明都弄丢了。
教训:看别人的解决方法要仔细,不要只会Ctrl+c v;
最后贴一个完整的(别忘了刷新项目):
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>op</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>