在简单的原型上调用 mvn archetype:create-from-project:webapp 项目要求 Setting.xml
Posted
技术标签:
【中文标题】在简单的原型上调用 mvn archetype:create-from-project:webapp 项目要求 Setting.xml【英文标题】:Calling mvn archetype:create-from-project on a simple archetype:webapp project is asking for Setting.xml 【发布时间】:2020-01-05 19:12:55 【问题描述】:我正在关注 this instruction 以了解 maven
原型。
在一个简单的 webapp 项目上调用mvn archetype:create-from-project
,要求我在.m2
目录下拥有setting.xml
文件。
不知道为什么要问,找不到任何具体的原因。没有为任何本地项目创建任何文档状态。
如果你给一个清晰的图片,请帮助。 在运行命令时附加错误。
[INFO] Scanning for projects...
[INFO]
[INFO] -------------------------< com.example:myapp >--------------------------
[INFO] Building myapp Maven Webapp 0.0.1-SNAPSHOT
[INFO] --------------------------------[ war ]---------------------------------
[INFO]
[INFO] >>> maven-archetype-plugin:3.1.2:create-from-project (default-cli) > generate-sources @ myapp >>>
[INFO]
[INFO] <<< maven-archetype-plugin:3.1.2:create-from-project (default-cli) < generate-sources @ myapp <<<
[INFO]
[INFO]
[INFO] --- maven-archetype-plugin:3.1.2:create-from-project (default-cli) @ myapp ---
[INFO] Setting default groupId: com.example
[INFO] Setting default artifactId: myapp
[INFO] Setting default version: 0.0.1-SNAPSHOT
[INFO] Setting default package: com.example
[WARN] Maven will be executed in interactive mode, but no input stream has been configured for this MavenInvoker instance.
[ERROR] Error executing Maven.
[ERROR] The specified user settings file does not exist: C:\Users\Rajat Dobriyal\.m2\settings.xml
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5.303 s
[INFO] Finished at: 2020-01-06T00:38:43+05:30
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.1.2:create-from-project (default-cli) on project myapp: Invoker process ended with result different than 0! -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
任何帮助都会很棒。
【问题讨论】:
【参考方案1】:settings.xml
不是在安装过程中创建的,所以你需要在C:\Users\Rajat Dobriyal\.m2\settings.xml
下创建一个默认设置文件,内容如下:
<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
https://maven.apache.org/xsd/settings-1.0.0.xsd">
</settings>
更详细的是here
【讨论】:
谢谢。但它适用于 settings.xml 的原因是什么。即使在没有这样的配置之后。在看到任何教程时,甚至都没有提到 settings.xml以上是关于在简单的原型上调用 mvn archetype:create-from-project:webapp 项目要求 Setting.xml的主要内容,如果未能解决你的问题,请参考以下文章
执行 mvn archetype:generate with URL for 时未定义原型