您好,登錄后才能下訂單哦!
這篇文章給大家介紹如何將默認maven倉庫修改為阿里maven倉庫,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
在eclipse中默認的maven,它加載的是國外的鏡像,那樣速度會比較慢,如果使用國內鏡像,比如阿里的中央倉庫;速度會快很多。
那如何修改maven倉庫呢?(網上有很多如何修改maven倉庫的方法,這邊我是以我操作的方法,和參考網上的修改方法)
Step-2:下載完成之后,在apache-maven-3.5.0/conf文件夾下新建一個settings.xml,并在apache-maven-3.5.0文件夾下創建一個repos文件夾,用于下面在eclipse中將其設置為倉庫的路徑
而settings.xml的內容可以在網上找一個,settings.xml如下
?xml version="1.0" encoding="UTF-8"?> <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>E:\apache-maven-3\apache-maven-3.5.0\repos</localRepository> <pluginGroups> </pluginGroups> <proxies> </proxies> <servers> </servers> <mirrors> <!-- mirror | Specifies a repository mirror site to use instead of a given repository. The repository that | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used | for inheritance and direct lookup purposes, and must be unique across the set of mirrors. | <mirror> <id>mirrorId</id> <mirrorOf>repositoryId</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://my.repository.com/repo/path</url> </mirror> --> <mirror> <id>alimaven</id> <mirrorOf>*</mirrorOf> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/</url> </mirror> </mirrors> <profiles> </profiles> </settings>
其中核心的部分為:
<mirror> <id>alimaven</id> <mirrorOf>*</mirrorOf> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/</url> </mirror>
Step-3:對eclipse進行修改
在window—》preferences
完成之后:切換到maven的窗口
然后重新建立索引
關于如何將默認maven倉庫修改為阿里maven倉庫就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。