maven指定settings文件如何配置

avatar
作者
猴君
阅读量:1

要指定Maven使用特定的settings文件,可以在命令行中使用-s参数,例如:

mvn clean install -s /path/to/settings.xml 

如果想永久性地指定settings文件,可以在Maven的conf目录中创建一个settings.xml文件,并在其中指定要使用的settings文件的路径,例如:

<?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>${user.home}/.m2/repository</localRepository>        <servers>         <!-- server definitions -->     </servers>        <mirrors>         <!-- mirror definitions -->     </mirrors>        <profiles>         <profile>             <id>my-settings</id>             <activation>                 <activeByDefault>true</activeByDefault>             </activation>             <properties>                 <maven.settings.file>/path/to/settings.xml</maven.settings.file>             </properties>         </profile>     </profiles>    </settings> 

这样,Maven就会默认使用指定的settings文件。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!