1. 程式人生 > >maven 使用國內的資源庫 eclipse設定maven載入國內映象

maven 使用國內的資源庫 eclipse設定maven載入國內映象

 

<?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">
<mirrors>
<!-- 阿里雲倉庫,使用國內maven 資源庫 -->
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>

<!-- 中央倉庫1 -->
<mirror>
<id>repo1</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo1.maven.org/maven2/</url>
</mirror>

<!-- 中央倉庫2 -->
<mirror>
<id>repo2</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo2.maven.org/maven2/</url>
</mirror>
</mirrors>
</settings>

 

eclipse設定maven載入國內映象

 使用maven包管理器開發java web時,由於國內網速太慢,或者牆的緣故,建立project後,總是要等待很長時間載入所需jar包。這對於開發者而言,是一種痛苦的等待,對於企業,也是一種損失。

        今天得遇高人指點,對eclipse中的maven外掛做了優化配置,下面一步一步的操作示範,幫助有需要的朋友們:

        linux/windows:開啟eclipse後,window-》preferences-》maven

        mac:eclipse偏好設定-》maven

        然後選擇 User Settings,如下圖:

根據圖中3的指示的位置,建立一個配置檔案settings.xml。

        linux/mac均可使用下面命令建立,先不寫任何內容,然後儲存,vim命令模式下是:wq,注:w是寫入,q是退出,冒號是命令開始

     ~$ vim /home/joyven/.m2/settings.xml

        windows需要在當前使用者目錄下,依管理員身份建立。

 

 

       接著回到eclipse的操作步驟,先關閉preferences面板,再次根據前面說步驟的,開啟此面板,你會看到User Settings中發生的變化,如下圖:

是的,你沒看錯,多出來了一個openfile。點選openfile,然後Apply,再OK,最後關閉此面板。此時,已經在eclipse編輯視窗打開了前面建立的settings.xml檔案。

     配置開始了,將下面的程式碼複製到settings.xml檔案中,儲存即可。

 

<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
	<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>nexus-osc</id>
			<mirrorOf>central</mirrorOf>
			<name>Nexus osc</name>
			<url>http://maven.oschina.net/content/groups/public/</url>
		</mirror>
		<mirror>
			<id>nexus-osc-thirdparty</id>
			<mirrorOf>thirdparty</mirrorOf>
			<name>Nexus osc thirdparty</name>
			<url>http://maven.oschina.net/content/repositories/thirdparty/</url>
		</mirror>
	</mirrors>

	<profiles>
		<profile>
			<id>default</id>
			<repositories>
				<repository>
					<id>nexus</id>
					<name>local private nexus</name>
					<url>http://maven.oschina.net/content/groups/public/</url>
					<releases>
						<enabled>true</enabled>
					</releases>
					<snapshots>
						<enabled>false</enabled>
					</snapshots>
				</repository>
			</repositories>
			<pluginRepositories>
				<pluginRepository>
					<id>nexus</id>
					<name>local private nexus</name>
					<url>http://maven.oschina.net/content/groups/public/</url>
					<releases>
						<enabled>true</enabled>
					</releases>
					<snapshots>
						<enabled>false</enabled>
					</snapshots>
				</pluginRepository>
			</pluginRepositories>
		</profile>
	</profiles>
</settings>



 

        測試一下:在eclipse中建立一個maven工程,然後在eclipse的console視窗中,選擇maven console。就可以看到載入的包的來源了。

       右下角的倒三角箭頭滑鼠懸浮上去後,有很多console列表,選擇maven console即,點選即可切換到maven視窗,可看到有關下載源的資訊,如下圖:

-------------------------------------------補充更新------------------------------------------------------------------------------

settings.xml檔案中,在標籤<profile>必須包含在<profiles>中,否則在使用命令列執行mvn時,會出現一些錯誤:

Error reading settings.xml: Unrecognised tag: 'profile' (position: START_TAG seen ...</mirrors>\n\n\t<profile>... @22:11) 
  Line:   22
  Column: 11
[email protected]:/mnt/workspace/spring-mvc$ mvn archetype:generate DgroupId=joyven -DartifactId=spring-mvc -DarchetypeArtifactId=maven-archetype-webapp

修改之後則沒有了。

 

補充一點:

用maven建立專案:

 

 mvn archetype:generate DgroupId=joyven -DartifactId=spring-mvc -DarchetypeArtifactId=maven-archetype-webapp


說明:maven主要依靠座標來區分專案包。

 

          groupId

          artifactId

          archetypeArtifactId

          version

這四個值體現了maven包的唯一性。

  分類:  eclipse 標籤:  mavenaliyuneclipsemaven映象

 使用maven包管理器開發java web時,由於國內網速太慢,或者牆的緣故,建立project後,總是要等待很長時間載入所需jar包。這對於開發者而言,是一種痛苦的等待,對於企業,也是一種損失。

        今天得遇高人指點,對eclipse中的maven外掛做了優化配置,下面一步一步的操作示範,幫助有需要的朋友們:

        linux/windows:開啟eclipse後,window-》preferences-》maven

        mac:eclipse偏好設定-》maven

        然後選擇 User Settings,如下圖:

根據圖中3的指示的位置,建立一個配置檔案settings.xml。

        linux/mac均可使用下面命令建立,先不寫任何內容,然後儲存,vim命令模式下是:wq,注:w是寫入,q是退出,冒號是命令開始

     ~$ vim /home/joyven/.m2/settings.xml

        windows需要在當前使用者目錄下,依管理員身份建立。

 

 

       接著回到eclipse的操作步驟,先關閉preferences面板,再次根據前面說步驟的,開啟此面板,你會看到User Settings中發生的變化,如下圖:

是的,你沒看錯,多出來了一個openfile。點選openfile,然後Apply,再OK,最後關閉此面板。此時,已經在eclipse編輯視窗打開了前面建立的settings.xml檔案。

     配置開始了,將下面的程式碼複製到settings.xml檔案中,儲存即可。

 

<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
	<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>nexus-osc</id>
			<mirrorOf>central</mirrorOf>
			<name>Nexus osc</name>
			<url>http://maven.oschina.net/content/groups/public/</url>
		</mirror>
		<mirror>
			<id>nexus-osc-thirdparty</id>
			<mirrorOf>thirdparty</mirrorOf>
			<name>Nexus osc thirdparty</name>
			<url>http://maven.oschina.net/content/repositories/thirdparty/</url>
		</mirror>
	</mirrors>

	<profiles>
		<profile>
			<id>default</id>
			<repositories>
				<repository>
					<id>nexus</id>
					<name>local private nexus</name>
					<url>http://maven.oschina.net/content/groups/public/</url>
					<releases>
						<enabled>true</enabled>
					</releases>
					<snapshots>
						<enabled>false</enabled>
					</snapshots>
				</repository>
			</repositories>
			<pluginRepositories>
				<pluginRepository>
					<id>nexus</id>
					<name>local private nexus</name>
					<url>http://maven.oschina.net/content/groups/public/</url>
					<releases>
						<enabled>true</enabled>
					</releases>
					<snapshots>
						<enabled>false</enabled>
					</snapshots>
				</pluginRepository>
			</pluginRepositories>
		</profile>
	</profiles>
</settings>



 

        測試一下:在eclipse中建立一個maven工程,然後在eclipse的console視窗中,選擇maven console。就可以看到載入的包的來源了。

       右下角的倒三角箭頭滑鼠懸浮上去後,有很多console列表,選擇maven console即,點選即可切換到maven視窗,可看到有關下載源的資訊,如下圖:

-------------------------------------------補充更新------------------------------------------------------------------------------

settings.xml檔案中,在標籤<profile>必須包含在<profiles>中,否則在使用命令列執行mvn時,會出現一些錯誤:

Error reading settings.xml: Unrecognised tag: 'profile' (position: START_TAG seen ...</mirrors>\n\n\t<profile>... @22:11) 
  Line:   22
  Column: 11
[email protected]:/mnt/workspace/spring-mvc$ mvn archetype:generate DgroupId=joyven -DartifactId=spring-mvc -DarchetypeArtifactId=maven-archetype-webapp

修改之後則沒有了。

 

補充一點:

用maven建立專案:

 

 mvn archetype:generate DgroupId=joyven -DartifactId=spring-mvc -DarchetypeArtifactId=maven-archetype-webapp


說明:maven主要依靠座標來區分專案包。

 

          groupId

          artifactId

          archetypeArtifactId

          version

這四個值體現了maven包的唯一性。