maven问题集

  • Description Resource Path Location Type
    Build path specifies execution environment JavaSE-1.7. There are no JREs installed in the workspace that are strictly compatible with this environment. oto Build path JRE System Library Problem

新建maven webapp项目后出现,目前的编译环境需要的是javase 1.7,而我电脑上的是1.8,因而需要配置运行环境为1.8

解决办法:找到pom.xml中maven-compiler-plugin配置


          maven-compiler-plugin
          3.7.0
        

修改如下:


          maven-compiler-plugin
          3.7.0
          
            1.8
            1.8
            UTF8
          
        
  • Classpath entry org.maven.eclipse.MAVEN2_CLASSPATH_CONTAINER will not be exported or published

需要将navigator视图下.classpath文件中,添加


        
            
        
    

添加元素如下


        
            
            
        
    

然后右击项目 -> propertier -> java build path -> order and export 下选中 Maven,点击确定,最后clean项目即可。

mvn插件库:https://mvnrepository.com/

你可能感兴趣的:(maven问题集)