Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Latest commit

 

History

History
54 lines (37 loc) · 1.31 KB

README.adoc

File metadata and controls

54 lines (37 loc) · 1.31 KB

Spring Beet Build Status Maven Central Coverage Status FOSSA Status

编译项目

./mvnw clean install

其它编译参数

跳过代码风格检查

./mvnw clean install -Dcheckstyle.skip

跳过静态代码检查

./mvnw clean install -Dspotbugs.skip

跳过测试覆盖率检查

./mvnw clean install -Djacoco.skip

检查版权信息

./mvnw license:check

添加版权信息

./mvnw license:format

发布 SNAPSHOT 版本

./mvnw clean deploy

发布 Staging 版本

./mvnw clean
./mvnw release:clean
./mvnw release:prepare
./mvnw release:perform