0
我的機器上有一個本地存儲庫。我需要將它添加到maven的settings.xml中。我在網上找到的所有示例如下所示:將本地存儲庫添加到maven settings.xml
<settings>
<profiles>
<profile>
<id>myprofile</id>
<repositories>
<repository>
<id>androidsupport</id>
<name>Android Support</name>
<url>http://www.whatever.com/maven2/</url>
</repository>
</repositories>
</profile>
<activeProfiles>
<activeProfile>myprofile</activeProfile>
</activeProfiles>
</profiles>
</settings>
我需要將它指向本地回購。我怎樣才能做到這一點?
這是保存包裹的1個本地目標回購站。我需要添加第二個來源回購 – ConditionRacer
好吧,明白你想要什麼。請再看一下我的帖子,我已經編輯過它。 – RMachnik