0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

MacにMavenを導入する手順メモ

Last updated at Posted at 2021-03-30

環境
macOS Big Sur 11.2.3

① Mavenファイルの取得

Mavenの公式サイト(https://maven.apache.org/download.cgi)にアクセスする。

「Binary tar.gz archive」をダウンロードする。

ダウンロードディレクトリに「 apache-maven-○.○.○-bin.tar.gz 」ファイルが
ダウンロードされているのでこれを[ /usr/local ]へ移動し、解凍。
(ユーザにroot権限を付与していない場合は必要に応じてコマンドの頭に sudo を追加して実行)

terminal
# ファイルを移動
mv Downloads/apache-maven-3.6.3-bin.tar.gz /usr/local

# ファイル移動先ディレクトリに移動
cd /usr/local

# ファイルを解凍
tar zxvf apache-maven-3.6.3-bin.tar.gz

# 不要な元ファイルを削除
rm apache-maven-3.6.3-bin.tar.gz

「 /usr/local 」ディレクトリに「 apache-maven-3.6.3 」というファイルが配置されている
ことを確認する

②環境変数設定

「 M3_HOME 」という名前で先程解凍したMavenファイルのPathを作成する

terminal
# exportコマンドでファイルのPathを環境変数に指定
export M3_HOME=/usr/local/apache-maven-3.6.3

# 同様に/binまでのPathを環境変数に指定
M3=$M3_HOME/bin

# 環境変数PATHに追加
export PATH=$PATH:$M3

# 最後に環境変数PATHの変更内容を反映させる
source ~/.bash_profile

③最終確認

terminal
# 導入されたMavenのバージョンを確認
mvn -version

# Apache Maven 3.6.3

Mavenのバージョンが表示されたので無事導入完了

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?