재미있는 코드들

MAC에 Maven 설치하기

tongnamuu 2022. 1. 4. 22:32

 

https://maven.apache.org/download.cgi

 

Maven – Download Apache Maven

Downloading Apache Maven 3.8.4 Apache Maven 3.8.4 is the latest release and recommended version for all users. The currently selected download mirror is https://dlcdn.apache.org/. If you encounter a problem with this mirror, please select another mirror. I

maven.apache.org

에 들어가서 파일을 받아서 압축을 풀어서 폴더의 위치를 저장한다.

이후가 중요한데

bin 폴더를 환경변수에 저장해주면 된다.

vim ./bash_profile

을 하고 

export PATH=/{저장된 폴더위치}/apache-maven-3.8.4/bin:$PATH

를 추가해주고 저장한 후

source ./bash_profile

mvn -v

이 때 글이 써지지 않을 수도 있어서를 해줘야 할 수도 있다.

sudo chown {사용자 이름}

괄호는 전체를 대체해줘야함, 사용자이름이 username 이라면

sudo chown username

처럼 하면 된다.