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

マルチモジュールのプロジェクトで指定したサブモジュールだけビルド

Posted at

忘れがちなのでメモ。
親プロジェクトのディレクトリに移動してから以下のコマンドを実行する。

mvn install -pl ${sub_module_name} -am
オプション説明
short option long option description
-pl --projects プロジェクト名を指定してビルドする
-am --also-make 依存するモジュールも一緒にビルドするオプション
参考リンク

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?