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 1 year has passed since last update.

よく使うMavenのコマンド

Last updated at Posted at 2023-06-28

環境

  • JDK 17
  • Maven
  • macOS Ventura
  • Spring Boot 3.1.1

多少バージョンが違ってても同じだと思います。

Mavenのインストール

brew install maven

JARへのパッケージング

mvn clean package

テストの実行をしたくない場合は👇

mvn clean package -DskipTests=true

コンパイル成果物の削除

mvn clean

テストの実行

mvn clean test

Spring Bootアプリの実行

mvn spring-boot:run

ライブラリのダウンロードだけ行う

mvn dependency:copy-dependencies

ライブラリの一覧を見る

mvn dependency:tree

実行

mvn exec:java -Dexec.mainClass=メインクラス名

更に詳しいことはCLOVER

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?