Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-api-boot
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-api-boot
Commits
51810886
提交
51810886
authored
1月 06, 2023
作者:
方治民
浏览文件
操作
浏览文件
下载
差异文件
合并分支 '3.0' 到 'master'
build: 依赖升级 查看合并请求
!13
上级
a4274b1b
ccb648b8
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
8 行增加
和
8 行删除
+8
-8
build.gradle
build.gradle
+7
-7
settings.gradle
settings.gradle
+1
-1
没有找到文件。
build.gradle
浏览文件 @
51810886
plugins
{
plugins
{
id
'java'
id
'java'
// https://start.spring.io
// https://start.spring.io
id
'org.springframework.boot'
version
'2.7.
6
'
id
'org.springframework.boot'
version
'2.7.
7
'
// https://plugins.gradle.org/plugin/io.spring.dependency-management
// https://plugins.gradle.org/plugin/io.spring.dependency-management
id
'io.spring.dependency-management'
version
'1.0.13.RELEASE'
id
'io.spring.dependency-management'
version
'1.0.13.RELEASE'
// https://plugins.gradle.org/plugin/com.diffplug.spotless
// https://plugins.gradle.org/plugin/com.diffplug.spotless
...
@@ -11,7 +11,7 @@ plugins {
...
@@ -11,7 +11,7 @@ plugins {
ext
{
ext
{
// Spotless
// Spotless
// https://www.npmjs.com/package/prettier
// https://www.npmjs.com/package/prettier
prettierVersion
=
'2.8.
0
'
prettierVersion
=
'2.8.
1
'
// https://www.npmjs.com/package/prettier-plugin-java
// https://www.npmjs.com/package/prettier-plugin-java
prettierJavaVersion
=
'2.0.0'
prettierJavaVersion
=
'2.0.0'
...
@@ -27,9 +27,9 @@ ext {
...
@@ -27,9 +27,9 @@ ext {
// https://mvnrepository.com/artifact/cn.dev33/sa-token-spring-boot-starter
// https://mvnrepository.com/artifact/cn.dev33/sa-token-spring-boot-starter
saTokenVersion
=
'1.33.0'
saTokenVersion
=
'1.33.0'
// https://mvnrepository.com/artifact/cn.hutool/hutool-all
// https://mvnrepository.com/artifact/cn.hutool/hutool-all
hutoolVersion
=
'5.8.1
0
'
hutoolVersion
=
'5.8.1
1
'
// https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2
// https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2
fastJsonVersion
=
'2.0.2
0
'
fastJsonVersion
=
'2.0.2
2
'
// https://mvnrepository.com/artifact/com.xuxueli/xxl-job-core
// https://mvnrepository.com/artifact/com.xuxueli/xxl-job-core
xxlJobVersion
=
'2.3.1'
xxlJobVersion
=
'2.3.1'
// https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
// https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
...
@@ -37,7 +37,7 @@ ext {
...
@@ -37,7 +37,7 @@ ext {
// https://mvnrepository.com/artifact/io.minio/minio
// https://mvnrepository.com/artifact/io.minio/minio
minioVersion
=
'8.4.6'
minioVersion
=
'8.4.6'
// https://mvnrepository.com/artifact/com.vladmihalcea/hibernate-types-55
// https://mvnrepository.com/artifact/com.vladmihalcea/hibernate-types-55
hibernateTypesVersion
=
'2.2
0.0
'
hibernateTypesVersion
=
'2.2
1.1
'
// https://mvnrepository.com/artifact/org.hibernate/hibernate-spatial
// https://mvnrepository.com/artifact/org.hibernate/hibernate-spatial
hibernateSpatialVersion
=
'5.6.14.Final'
hibernateSpatialVersion
=
'5.6.14.Final'
// https://mvnrepository.com/artifact/org.locationtech.jts/jts-core
// https://mvnrepository.com/artifact/org.locationtech.jts/jts-core
...
@@ -45,7 +45,7 @@ ext {
...
@@ -45,7 +45,7 @@ ext {
// https://mvnrepository.com/artifact/com.github.liaochong/myexcel
// https://mvnrepository.com/artifact/com.github.liaochong/myexcel
myexcelVersion
=
'4.2.2'
myexcelVersion
=
'4.2.2'
// https://mvnrepository.com/artifact/org.jetbrains/annotations
// https://mvnrepository.com/artifact/org.jetbrains/annotations
jetbrainsAnnotationsVersion
=
'23.
0
.0'
jetbrainsAnnotationsVersion
=
'23.
1
.0'
// https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox
// https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox
pdfboxVersion
=
'2.0.27'
pdfboxVersion
=
'2.0.27'
}
}
...
@@ -134,7 +134,7 @@ subprojects {
...
@@ -134,7 +134,7 @@ subprojects {
}
}
}
}
task
preCommit
(
)
{
task
s
.
register
(
'preCommit'
)
{
// fix: CI/CD
// fix: CI/CD
try
{
try
{
// GitHook pre-commit (spotless, spotbugs)
// GitHook pre-commit (spotless, spotbugs)
...
...
settings.gradle
浏览文件 @
51810886
...
@@ -5,7 +5,7 @@ pluginManagement {
...
@@ -5,7 +5,7 @@ pluginManagement {
}
}
}
}
rootProject
.
name
=
'basic-api'
rootProject
.
name
=
'basic-api
-boot
'
include
'app'
include
'app'
include
'basic-auth'
include
'basic-auth'
include
'basic-websocket'
include
'basic-websocket'
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论