반응형
Recent Posts
Recent Comments
관리 메뉴

개발잡부

Maven 설치 - Mac OS (old version) 본문

JAVA/etc.

Maven 설치 - Mac OS (old version)

닉의네임 2022. 2. 28. 11:24
반응형

homebrew 설치가 되지 않아 다운 받아서 설치

 

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

접속해서 Binary tar.gz archive 를 다운 받자

 

압축을 풀고

sudo mv ./apache-maven-3.8.4 /usr/local

 

bash_profile 에 추가

vi .bash_profile

#### 파일 하단에 추가 ####

#MAVEN
export M3_HOME=/usr/local/apache-maven-3.8.4
export PATH=$PATH:$M3_HOME/bin

소스반영

source .bash_profile

 

버전확인 

mvn -v

반응형

'JAVA > etc.' 카테고리의 다른 글

spark  (0) 2022.05.30
sql  (0) 2022.04.16
Nexus  (0) 2022.02.10
[Pentaho] Transformation 1  (0) 2021.12.02
이미지 업로드 jquery, axios  (0) 2020.11.11
Comments