如何使用maven命令行来确定maven正在拾取哪个settings.xml文件?
当前回答
这是Maven的配置文件。它可以在两个级别上指定:
User Level. This settings.xml file provides configuration for a single user, and is normally provided in ${user.home}/.m2/settings.xml. NOTE: This location can be overridden with the CLI option: -s /path/to/user/settings.xml Global Level. This settings.xml file provides configuration for all Maven users on a machine (assuming they're all using the same Maven installation). It's normally provided in ${maven.home}/conf/settings.xml. NOTE: This location can be overridden with the CLI option: -gs /path/to/global/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吐出组合的全局和用户设置。
如果您像我一样在调试和浪费时间,这将提供包括密码在内的详细信息。: P
mvn help:effective-settings -DshowPasswords=true
确定Maven是否正在使用所需的settings.xml的快速且肮脏的方法将使其xml无效,并运行一些需要settings.xml的安全Maven命令。
如果它读取了settings.xml,那么Maven会报告一个错误:“读取settings.xml时出错…”
这是Maven的配置文件。它可以在两个级别上指定:
User Level. This settings.xml file provides configuration for a single user, and is normally provided in ${user.home}/.m2/settings.xml. NOTE: This location can be overridden with the CLI option: -s /path/to/user/settings.xml Global Level. This settings.xml file provides configuration for all Maven users on a machine (assuming they're all using the same Maven installation). It's normally provided in ${maven.home}/conf/settings.xml. NOTE: This location can be overridden with the CLI option: -gs /path/to/global/settings.xml
推荐文章
- 如何循环通过文件匹配通配符在批处理文件
- 点击按钮时如何打开手机设置?
- 我怎么能显示线在公共(反向差异)?
- Maven使用多个src目录编译
- Git显示“警告:永久添加到已知主机列表”
- Maven依赖项失败,出现501错误
- 是什么原因导致Eclipse中导入的Maven项目默认使用Java 1.5而不是Java 1.6,我如何确保它不使用?
- 如何在文本文件中替换${}占位符?
- 如何在批处理文件中请求管理员访问
- 如何在Mac OS Lion上从命令行启动MySQL服务器?
- 如何使用文件的行作为命令的参数?
- 禁用maven下载进度指示
- 如何在一个命令行中下载特定的Maven工件?
- BAT文件:打开新的cmd窗口并在其中执行命令
- 如何做一个非贪婪匹配在grep?