0

I have installed Maven (latest version available in Internet) in my system. I am using windows 7. In command prompt, the version is showing correctly (through mvn -version command); but there is no file is available in C:\Users\Prabodh.m2\repository.... I am not sure why this problem is occurring...

Please let me know what are the files should be present there in a typical/standard installation; and what is the possible reason I am not being able to access them...

4

2 回答 2

1

如果您正在寻找,settings.xml那么这里就是答案 -

设置文件永远不会自动创建,您必须自己创建,无论您使用嵌入式还是“真实”maven。

在以下位置创建它,<your home folder>/.m2/settings.xml例如在您的情况下C:\Users\Prabodh\.m2\settings.xml

C:\Users\Prabodh\.m2\repository当您第一次构建项目时,maven 将在该位置安装来自 Maven 中央存储库的所有 jar。

有关更多信息,我强烈建议您阅读此Maven Specs for Settings.xml

于 2013-08-10T16:50:00.920 回答
1

Maven 一开始是一个空的插件执行框架。因此,只要 Maven 没有做任何事情,您的本地存储库就会保持空白。

在命令行上尝试mvn help:help(任何目录都可以)。这样您将获得 maven-help 插件的帮助描述。请注意,第一次它会下载很多。但是如果你mvn help:help第二次执行,它所需的所有代码已经在你的本地存储库中可用,所以它会非常快速地显示帮助。

于 2013-08-10T17:00:58.460 回答