新建一个maven项目,settings.xml的配置

新建一个maven project,勾选跳过骨架选择。
在perferrence中,maven-user setting中选择你maven-conf中的settIngs.xml
有时候不对的settings.xml文件,会使新建后的maven项目报各种plugins错误。

以下是我的maven的settings.xml的配置:
添加一个本地localRepository.






<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  
  <localRepository>E:\repolocalRepository>


  

  

  
  <pluginGroups>
    
  pluginGroups>

  
  <proxies>
    
  proxies>

  
  <servers>
    

    
  servers>

  
  <mirrors>
    



  mirrors>

  
  <profiles>
    

    
    
  profiles>

  

    <activeProfiles>
        <activeProfile>nexusactiveProfile>
    activeProfiles>
settings>

最后maven还是会报错,因为项目没添加web.xml文件。在src目录webapp中添加WEB-INF下加个空的web.xml文件,错误就消失了。

你可能感兴趣的:(maven)