Maven使用私服setting.xml中的配置

Maven使用私服setting.xml中的配置


setting.xml中的配置

使用maven,每次都是从中央仓库下载依赖包,网络很渣,只有使用Nexus搭建个私服。

下面是setting.xml中的配置文件



<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>D:/repositorylocalRepository>
  <pluginGroups>
  pluginGroups>
  <proxies>
  proxies>
  <servers>
    
   <server>  
        <id>releasesid>  
        <username>adminusername>  
        <password>admin123password>  
    server>  
  servers>
  <mirrors>
    <mirror>
        
        <id>publicid>  
        <name>internal nexus repositoryname>  
      <url> http://192.168.1.120:8081/nexus/content/groups/public/url>
        <mirrorOf>centralmirrorOf>  
    mirror>  
  mirrors>
  <profiles>
  profiles>
settings>

你可能感兴趣的:(Java)