-
Notifications
You must be signed in to change notification settings - Fork 2
新手指南
yong.teng edited this page Apr 22, 2020
·
3 revisions
buession-security 主要对安全框架、安全验证、安全认证、鉴权、加密等等的封装和扩展。
- 统一了对各类包的版本依赖
- 简化了部分框架的使用,降低了学习成本
Maven
<dependency>
<groupId>com.buession.security</groupId>
<artifactId>buession-security-xxx</artifactId>
<version>x.x.x</version>
</dependency>
Gradle
compile group: 'com.buession.security', name: 'buession-security-xxx', version: 'x.x.x'
其中,artifactId 中的 xxx 表示对应的子模块;version 中的 x.x.x 代表版本号,根据需要使用特定版本,建议使用最新版本。