maven / / 2023. 5. 17. 08:34

maven 실행 시 시간 표시하기

maven 실행할 때 시간을 표시하는 방법은 2가지가 있다.

  1. 설정파일에 추가하는 방법
  2. mvn 실행 시 옵션을 추가하는 방법

1. 설정파일에 추가하는 방법

$MAVEN_HOME/config/logging/simplelogger.properties 파일을 열여서 아래 값을 설정해준다.

org.slf4j.simpleLogger.showDateTime=true

2. mvn 실행 시 옵션을 추가하는 방법

maven 실행 시 -D 옵션으로 추가하면 된다.

예)

mvn clean install -Dorg.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss,SSS -Dorg.slf4j.simpleLogger.showDateTime=true

이렇게 하면 아래와 같이 표시된다.

08:48:37,941 [INFO] --- compiler:3.8.1:compile (default-compile) @ demo-boot ---
08:48:37,967 [INFO] Changes detected - recompiling the module!
08:48:37,970 [INFO] Compiling 3 source files to /home/jenkins/demo-boot/target/classes
08:48:38,646 [INFO]
08:48:38,646 [INFO] --- resources:3.1.0:testResources (default-testResources) @ demo-boot ---
08:48:38,659 [INFO] Using 'UTF-8' encoding to copy filtered resources.
08:48:38,659 [INFO] skip non existing resourceDirectory /home/jenkins/demo-boot/src/test/resources
08:48:38,659 [INFO]
08:48:38,659 [INFO] --- compiler:3.8.1:testCompile (default-testCompile) @ demo-boot ---
08:48:38,661 [INFO] No sources to compile
08:48:38,661 [INFO]
08:48:38,661 [INFO] --- surefire:2.22.2:test (default-test) @ demo-boot ---
반응형
  • 네이버 블로그 공유
  • 네이버 밴드 공유
  • 페이스북 공유
  • 카카오스토리 공유