設置文件,從未創建自動地,你必須自己創建它,無論你使用嵌入的還是「真正的」maven。
在以下位置<your home folder>/.m2/settings.xml
例如創建它C:\Users\YourUserName\.m2\settings.xml
在Windows或/home/YourUserName/.m2/settings.xml
在Linux上
這裏有一個空的骨架您可以使用:
<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/>
<interactiveMode/>
<usePluginRegistry/>
<offline/>
<pluginGroups/>
<servers/>
<mirrors/>
<proxies/>
<profiles/>
<activeProfiles/>
</settings>
如果你使用Eclipse來編輯它,它會在編輯時,它會給你自動完成。
而這裏的Maven settings.xml Reference page
即使它已經幾年,@ SeanPatrickFloyd的回答仍然是正確的和有益的 - 它應該被接受。 – 2015-02-16 04:58:26