1 Star 0 Fork 1

耿直/ST-ShortURL

forked from 曙天/ST-ShortURL 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
曙天 提交于 2022-09-25 00:32 . init project
plugins {
id 'org.springframework.boot' version '2.7.4'
id 'io.spring.dependency-management' version '1.0.14.RELEASE'
id 'java'
}
group = 'vip.stqr'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'com.baomidou:mybatis-plus-boot-starter:3.5.2'
implementation("org.springframework.boot:spring-boot-starter-jdbc")
implementation("org.postgresql:postgresql")
// Hutool小而全的Java工具类库
implementation ('cn.hutool:hutool-all:5.8.6')
// Jedis is a Java client for Redis designed for performance and ease of use.
implementation ('redis.clients:jedis:4.2.3')
implementation("org.springdoc:springdoc-openapi-ui:1.6.11")
implementation("p6spy:p6spy:3.9.1")
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/ciqiu/st-short-url.git
git@gitee.com:ciqiu/st-short-url.git
ciqiu
st-short-url
ST-ShortURL
main

搜索帮助