[Gradle]그래들 알아보기 10 - Build Scans
SW개발/Spring

[Gradle]그래들 알아보기 10 - Build Scans

https://docs.gradle.org/current/userguide/build_scans.html

 

Build Scans

Gradle captures your build metadata and sends it to the Build Scan Service. The service then transforms the metadata into information you can analyze and share with others. The information that scans collect can be an invaluable resource when troubleshooti

docs.gradle.org

 

Build Scans

빌드 스캔은 빌드를 실행할 때 캡쳐되는 메타데이터의 표현입니다.

 

 

그래들은 Build Scan Service를 사용해서 빌드 메타 데이터를 캡쳐합니다. 그런 다음 서비스는 메타데이터를 분석하고 다른 사람과 공유할 수 있는 정보로 변환합니다.

 

스캔을 통해 수집된 정보는 문제 해결, 협업 또는 빌드 성능 최적화 시 중요한 리소스가 될 수 있습니다.

 

예를 들어, 빌드 스캔을 사용하면 해당 빌드 스캔에 대한 링크를 복사 및 공유함으로써 더 이상 일일히 오류 메시지를 복사하거나 붙여 넣을 필요가 없어집니다.

 

Enable Build Scans

빌드 스캔을 활성하기 위한 그래들 명령어는 --scan 입니다.

 ./gradlew build --scan

 

 

728x90