1 Star 0 Fork 0

军大君/Study_SpringSecurity

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
李白 提交于 2023-02-02 11:40 . success
plugins {
id 'org.springframework.boot' version '2.7.0'
id 'io.spring.dependency-management' version '1.0.12.RELEASE'
id 'java'
}
group = 'com.junda'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://maven.aliyun.com/repository/jcenter' }
}
dependencies {
//web基础服务包
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
//引入springSecurity安全认证框架 + jwt认证
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'io.jsonwebtoken:jjwt-api:0.10.7'
//数据库链接
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'mysql:mysql-connector-java:8.0.21'
//mybatisplus插件
implementation 'com.baomidou:mybatis-plus-boot-starter:3.5.2'
//lombok插件
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
//hutool工具类
implementation 'cn.hutool:hutool-all:5.8.10'
}
test {
useJUnitPlatform()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/junndaa/StudySpringSecurity.git
git@gitee.com:junndaa/StudySpringSecurity.git
junndaa
StudySpringSecurity
Study_SpringSecurity
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385