1
2

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 5 years have passed since last update.

Mavenの環境構築ってめんどくさい!!!

Posted at

こんにちは、ぽんぽこです!

先日、Mavenについて軽くご説明させていただきました。
今回はmacへのMavenの環境構築について書かせていただきます。

不備等あればご指摘ください!

では、説明に入ります!!

#環境構築に必要なもの
・mac

・Eclipse

・JDK 1.8

・Apache Tomcat

#手順
###1.MacにMavenをインストールする
1-1. インストール可能なMavenを確認する
brew search maven

結果

maven                maven-completion                maven-shell
maven@3.2            maven@3.3                       maven@3.5
==> Casks
mavensmate           homebrew/cask-fonts/font-maven-pro```

1-2. 最新のMavenをインストールする
`brew install maven@3.5`

1-3. PATHに追加する(~/.bash_profileを編集して実行)
`~/.bash_profile
MAVEN_HOME=/usr/local/opt/maven@3.5
export PATH=$MAVEN_HOME/bin:$PATH`

```source ~/.bash_profile```

1-4. バージョン確認
```mvn --version```


結果
```Updating Homebrew...
(中略)
==> Downloading https://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz
==> Downloading from http://ftp.riken.jp/net/apache/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz
########################################################100.0%
==> Caveats
maven@3.5 is keg-only, which means it was not symlinked into /usr/local,
because this is an alternate version of another formula.
If you need to have maven@3.5 first in your PATH run:
  echo 'export PATH="/usr/local/opt/maven@3.5/bin:$PATH"' >> ~/.bash_profile
==> Summary
🍺  /usr/local/Cellar/maven@3.5/3.5.4: 104 files, 10.2MB, built in 9 seconds```



###2.EclipseにMavenを設定する
2-1. [環境設定] > [Maven] > [インストール] > [追加] で 
[新規 Maven ランタイム ] ダイアログを開く

2-2. インストール・ホーム : 1.の「$ mvn — version」で表示された「Maven home」のパスを設定する

2-3. インストール・ホーム: 手頃に分かる名前を設定する

2-4. [完了]ボタンを押下する

###3.Mavenのプロジェクトを作成する
3-1. [ パッケージ エクスプローラ] > [新規]] > [Maven プロジェクト] > [次へ]

3-2. [ デフォルト・ワークスペース・ロケーションを使用 ] にチェックを入れる、
[シンプルなプロジェクトの作成] にチェックを入れる > [次へ]

3-3. 下記を入力して[Finish]
GroupId : プロジェクトのルートパッケージ名
ArtifactId : プロジェクト名
Version : プロジェクトのバージョン (今回はデフォルトのまんま)


以上のように非常にシンプル!



1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?