Maven - 安裝maven on Mac
簡短Maven介紹
Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.
安裝maven
- 下載maven
打開maven官方下載頁,http://maven.apache.org/download.cgi#
看選擇什麼什麼壓縮檔類型,這邊是選擇tar檔的類型,mac有內建解壓縮tar檔的解壓縮指令,下載到 /Library/apache-maven-3.5.4-bin.tar.gz 這個位置,進行解壓縮。
sudo tar xzvf apache-maven-3.5.4-bin.tar.gz
這邊使用sudo的原因是,在mac沒有使用root的角色作業,因此必須使用sudo,sudo必須輸入電腦當初設定的密碼。
- 設定環境變量
要使用maven必須幫電腦設定環境變量,開啟~/.bash_profile
這可以讓使用者進入電腦作業系統時,自動讀取.bash_profile當中的內容,將環境變量載入到電腦中
open ~/.bash_profile
使用文字編輯,編輯它
source ~/.bash_profile
使文件立即生效。
留言
張貼留言