maven setting.xml

maven setting.xml

< settings  xmlns ="http://maven.apache.org/POM/4.0.0"
  xmlns:xsi
="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation
="http://maven.apache.org/POM/4.0.0 
                      http://maven.apache.org/xsd/settings-1.0.0.xsd"
>
  
< localRepository </localRepository >
  
< offline > false </ offline >
 
</ settings >
localRepository

该值表示构建系统本地仓库的路径。

offline

如果构建系统需要在离线模式下运行,则为true,默认为false。当由于网络设置原因或者安全因素,构建服务器不能连接远程仓库的时候,该配置就十分有用。

你可能感兴趣的:(maven setting.xml)