Maven的配置文件(Maven的安装目录/conf/settings.xml ) 和 Maven仓库下(默认的Maven仓库的是用户家目录下的.m2文件,可以另行制定)的settings.xml文件
在Maven中提供了一个settings.xml文件来定义Maven的全局环境信息。这个文件会存在于Maven的安装目录的conf子目录下面,或者是用户家目录的.m2子目录下面。我们可以通过这个文件来定义本地仓库、远程仓库和联网使用的代理信息等。
其实相对于多用户的PC机而言,在Maven安装目录的conf子目录下面的settings.xml才是真正的全局的配置。而用户家目录的.m2子目录下面的settings.xml的配置只是针对当前用户的。
当这两个文件同时存在的时候,那么对于相同的配置信息用户家目录下面的settings.xml中定义的会覆盖Maven安装目录下面的settings.xml中的定义。
用户家目录下的settings.xml文件一般是不存在的,但是Maven允许我们在这里定义我们自己的settings.xml,如果需要在这里定义我们自己的settings.xml的时候就可以把Maven安装目录下面的settings.xml文件拷贝到用户家目录的.m2目录下,然后改成自己想要的样子。
参考:https://blog.csdn.net/java_2017_csdn/article/details/78458695
配置文件解释
<?xml version="1.0" encoding="UTF-8"?> <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>/data/maven/repo</localRepository> <!-- interactiveMode 是否使用交互模式,默认是true;如果设为false,那么当Maven需要用户进行输入的时候,它会使用一个默认值. <interactiveMode>true</interactiveMode> --> <!-- offline 是否离线,默认是false。这个属性表示在Maven进行项目编译和部署等操作时是否允许Maven进行联网来下载所需要的信息. <offline>false</offline> --> <!-- pluginGroups 在pluginGroups元素下面可以定义一系列的pluginGroup元素。表示当通过plugin的前缀来解析plugin的时候到哪里寻找。pluginGroup元素指定的是plugin的groupId。默认情况下,Maven会自动把org.apache.maven.plugins和org.codehaus.mojo添加到pluginGroups下 --> <pluginGroups> <!-- pluginGroup | Specifies a further group identifier to use for plugin lookup. <pluginGroup>com.your.plugins</pluginGroup> --> </pluginGroups> <!-- proxies 其下面可以定义一系列的proxy子元素,表示Maven在进行联网时需要使用到的代理。当设置了多个代理的时候第一个标记active为true的代理将会被使用 --> <proxies> <!-- proxy | Specification for one proxy, to be used in connecting to the network. | <proxy> <id>optional</id> <active>true</active> <protocol>http</protocol> <username>proxyuser</username> <password>proxypass</password> <host>proxy.host.net</host> <port>80</port> <nonProxyHosts>不使用代理的主机 local.net|some.host.com</nonProxyHosts> </proxy> --> </proxies> <!-- servers 其下面可以定义一系列的server子元素,表示当需要连接到一个远程服务器的时候需要使用到的验证方式。 这主要有username/password和privateKey/passphrase这两种方式 --> <servers> <server> <id>xxx-releases</id> <username>admin</username> <password>xxx</password> </server> <server> <id>xxx-snapshots</id> <username>admin</username> <password>xxx</password> </server> <server> <id>nexus</id> <username>admin</username> <password>xxx</password> </server> <server> <id>maven-releases</id> <username>admin</username> <password>xxx</password> </server> <server> <id>maven-snapshots</id> <username>admin</username> <password>xxx</password> </server> </servers> <!-- mirrors 用于定义一系列的远程仓库的镜像。我们可以在pom中定义一个下载工件的时候所使用的远程仓库。 但是有时候这个远程仓库会比较忙,所以这个时候人们就想着给它创建镜像以缓解远程仓库的压力, 也就是说会把对远程仓库的请求转换到对其镜像地址的请求。 每个远程仓库都会有一个id,这样我们就可以创建自己的mirror来关联到该仓库, 那么以后需要从远程仓库下载工件的时候Maven就可以从我们定义好的mirror站点来下载, 这可以很好的缓解我们远程仓库的压力。在我们定义的mirror中每个远程仓库都只能有一个mirror与它关联, 也就是说你不能同时配置多个mirror的mirrorOf指向同一个repositoryId 1、 id: 是用来区别mirror的,所有的mirror不能有相同的id 2、mirrorOf: 用来表示该mirror是关联的哪一个仓库,其值为其关联仓库的id。当要同时关联多个仓库时,这多个仓库之间可以用逗号隔开; 当要关联所有的仓库时,可以使用"*"表示;当要关联除某一个仓库以外的其他所有仓库时,可以表示为"*,!repositoryId"; 当要关联不是localhost或用file请求的仓库时,可以表示为"external:*"。 3、 url: 表示该镜像的url。当Maven在建立系统的时候就会使用这个url来连接到我们的远程仓库。 --> <mirrors> <mirror> <id>mirrorId</id> <mirrorOf>repositoryId</mirrorOf> <name>定义一个容易看懂的名称</name> <url>http://192.168.3.167:8081/repository/public/</url> </mirror> <mirror> <id>nexus</id> <mirrorOf>*</mirrorOf> <name>Local Nexus Server</name> <url>http://192.168.3.167:8081/repository/maven-public/</url> </mirror> <mirror> <id>web-3rd</id> <mirrorOf>*</mirrorOf> <name>A 3rd</name> <url>http://maven.xxx.com.cn:8081/repository/thirdparty/</url> </mirror> </mirrors> <!-- profiles 用于指定一系列的profile。profile元素由activation、repositories、pluginRepositories和properties四个元素组成。 当一个profile在settings.xml中是处于活动状态并且在pom.xml中定义了一个相同id的profile时, settings.xml中的profile会覆盖pom.xml中的profile. activation: 这是profile中最重要的元素。跟pom.xml中的profile一样,settings.xml中的profile也可以在特定环境下改变一些值,而这些环境是通过activation元素来指定的. 示例: <profiles> <profile> <id>test</id> <activation> <activeByDefault>false</activeByDefault> <jdk>1.6</jdk> <os> <name>Windows 7</name> <family>Windows</family> <arch>x86</arch> <version>5.1.2600</version> </os> <property> <name>mavenVersion</name> <value>2.0.3</value> </property> <file> <exists>${basedir}/file2.properties</exists> <missing>${basedir}/file1.properties</missing> </file> </activation> ... </profile> </profiles> 在上面这段代码中,当所有的约束条件都满足的时候就会激活这个profile。 jdk:表示当jdk的版本满足条件的时候激活,在这里是1.6。这里的版本还可以用一个范围来表示,如 <jdk>[1.4,1.7)</jdk>表示1.4、1.5和1.6满足; <jdk>[1.4,1.7]</jdk>表示1.4、1.5、1.6和1.7满足; os:表示当操作系统满足条件的时候激活。 property:property是键值对的形式,表示当Maven检测到了这样一个键值对的时候就激活该profile。 file:表示当文件存在或不存在的时候激活,exists表示存在,missing表示不存在。如下面的例子表示当文件hello/world不存在的时候激活该profile。 <profile> <activation> <file> <missing>hello/world</missing> </file> </activation> </profile> 1、下面的示例表示当存在属性hello的时候激活该profile。 <property> <name>hello</name> </property> 2、下面的示例表示当属性hello的值为world的时候激活该profile。 <property> <name>hello</name> <value>world</value> </property> 这个时候如果要激活该profile的话,可以在调用Maven指令的时候加上参数hello并指定其值为world,如:mvn compile –Dhello=world 3、activeByDefault: 当其值为true的时候表示如果没有其他的profile处于激活状态的时候,该profile将自动被激活。 4、properties: 用于定义属性键值对的。当该profile是激活状态的时候,properties下面指定的属性都可以在pom.xml中使用。 5、repositories: 用于定义远程仓库的,当该profile是激活状态的时候,这里面定义的远程仓库将作为当前pom的远程仓库。 6、 releases、snapshots:这是对于工件的类型的限制。 enabled:表示这个仓库是否允许这种类型的工件 updatePolicy:表示多久尝试更新一次。可选值有always、daily、interval:minutes(表示每多久更新一次)和never。 checksumPolicy:当Maven在部署项目到仓库的时候会连同校验文件一起提交,checksumPolicy表示当这个校验文件缺失或不正确的时候该如何处理,可选项有ignore、fail和warn。 7、pluginRepositories: 在Maven中有两种类型的仓库,一种是存储工件的仓库,另一种就是存储plugin插件的仓库。pluginRepositories的定义和repositories的定义类似,它表示Maven在哪些地方可以找到所需要的插件。 --> <profiles> <profile> <id>jdk_17</id> <activation> <activeByDefault>true</activeByDefault> <jdk>17</jdk> </activation> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.compilerVersion>17</maven.compiler.compilerVersion> </properties> </profile> <profile> <id>pro</id> <repositories> <repository> <id>pro</id> <name>pro</name> <url>http://maven.pro.com.cn:8081/repository/snapshots/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>pro-3rd</id> <name>pro-3rd</name> <url>http://maven.pro.com.cn:8081/repository/thirdparty/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>pro</id> <name>pro</name> <url>http://maven.pro.com.cn:8081/repository/snapshots/</url> <releases><enabled>true</enabled></releases> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> <checksumPolicy>fail</checksumPolicy> </snapshots> </pluginRepository> </pluginRepositories> </profile> </profiles> <!-- activeProfiles 8、activeProfiles: 包含一系列的activeProfile元素,表示对于所有的pom都处于活跃状态的profile。 无论是在pom.xml文件中,还是在settings.xml文件中,都可以配置多个profile。但是并非所有的都会被激活,即该的配置生效与否, 可以通过如下方式进行控制。下例表示默认激活pro、dev的 如: <activeProfiles> <activeProfile>alwaysActiveProfile</activeProfile> <activeProfile>anotherAlwaysActiveProfile</activeProfile> </activeProfiles> --> <activeProfiles> <activeProfile>pro</activeProfile> <activeProfile>dev</activeProfile> </activeProfiles> </settings>
标签:xml,Maven,配置文件,settings,pro,maven,true From: https://www.cnblogs.com/dannylinux/p/18488928