如何使用maven命令行来确定maven正在拾取哪个settings.xml文件?
当前回答
使用-X选项启动maven(调试)并检查输出的开头。应该是这样的:
...
[INFO] Error stacktraces are turned on.
[DEBUG] Reading global settings from c:\....\apache-maven-3.0.3\conf\settings.xml
[DEBUG] Reading user settings from c:\....\.m2\settings.xml
[DEBUG] Using local repository at C:\....\repository
...
(原来的目录名称被我删除了)
其他回答
您可以使用maven帮助插件来告诉您用户和全局设置文件的内容。
mvn help:effective-settings
将要求maven吐出组合的全局和用户设置。
确定Maven是否正在使用所需的settings.xml的快速且肮脏的方法将使其xml无效,并运行一些需要settings.xml的安全Maven命令。
如果它读取了settings.xml,那么Maven会报告一个错误:“读取settings.xml时出错…”
您对cletus(正确)回答的评论暗示涉及多个Maven设置文件。
Maven总是使用一个或两个设置文件。(${M2_HOME}/conf/settings.xml)中定义的全局设置始终是必需的。用户设置文件(定义在${user.home}/.m2/settings.xml中)是可选的。在用户设置中定义的任何设置优先于相应的全局设置。
你可以从命令行覆盖全局和用户设置的位置,下面的例子将全局设置设置为c:\global\settings.xml,用户设置为c:\user\settings.xml:
mvn install --settings c:\user\settings.xml
--global-settings c:\global\settings.xml
目前还没有属性或方法来确定Maven使用了哪些用户和全局设置文件。要访问这些值,您必须修改MavenCli和/或DefaultMavenSettingsBuilder以将文件位置注入解析的Settings对象。
如果您像我一样在调试和浪费时间,这将提供包括密码在内的详细信息。: P
mvn help:effective-settings -DshowPasswords=true
全局变量的M2_HOME环境变量。参见设置参考:
The settings element in the settings.xml file contains elements used to define values which configure Maven execution in various ways, like the pom.xml, but should not be bundled to any specific project, or distributed to an audience. These include values such as the local repository location, alternate remote repository servers, and authentication information. There are two locations where a settings.xml file may live: The Maven install: $M2_HOME/conf/settings.xml A user's install: ${user.home}/.m2/settings.xml
推荐文章
- 使iTerm以与其他操作系统相同的方式翻译“元键”
- 如何设置我的phpmyadmin用户会话不超时这么快?
- 在maven中安装mvn到底做什么
- Gradle替代mvn安装
- 如何合并2 JSON对象从2个文件使用jq?
- 如何在POM.xml中引用环境变量?
- Maven project.build.directory
- 如何触发命令行PHP脚本的XDebug分析器?
- Spring Boot -父pom,当你已经有一个父pom
- 使用Maven复制文件的最佳实践
- Maven命令行如何指向特定的settings.xml为单个命令?
- 如何循环通过文件匹配通配符在批处理文件
- 点击按钮时如何打开手机设置?
- 我怎么能显示线在公共(反向差异)?
- Maven使用多个src目录编译