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

mvn clean package install ...?

Last updated at Posted at 2020-04-26

Mavenを導入している現場を経験しました。
ソースの修正をしたらこのコマンドを実行するよう手順書にあり言われるがまま実行していましたが
それぞれどういう意味なのか改めて調べてみました。

##mvn package
targetディレクトリに**.jarを作る。
作成されるファイルの名前は、pom.xmlに記述されている artifactIdversionから決定される。
拡張子は,pom.xmlに記述されているpackagingから決定される。

##mvn clean
targetディレクトリを削除する。

##mvn install
.m2(ローカルリポジトリ)にインストールを行う。
そうすることで、ローカルの他のプロジェクトからの参照ができるようになる。

##mvn clean package install
targetディレクトリを削除して新しいjarを作成。他からの参照も最新化する。
と認識しておけばよさそうです。

3
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
3
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?