Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-api-boot
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-api-boot
Commits
c7c545bf
提交
c7c545bf
authored
12月 06, 2022
作者:
方治民
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 依赖升级、文档更新
上级
8d4d01f6
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
23 行增加
和
17 行删除
+23
-17
build.gradle
build.gradle
+12
-10
plugins.md
doc/plugins.md
+3
-6
technique.md
doc/technique.md
+8
-1
没有找到文件。
build.gradle
浏览文件 @
c7c545bf
plugins
{
id
'java'
// https://start.spring.io
id
'org.springframework.boot'
version
'2.7.
5
'
id
'org.springframework.boot'
version
'2.7.
6
'
// https://plugins.gradle.org/plugin/io.spring.dependency-management
id
'io.spring.dependency-management'
version
'1.0.13.RELEASE'
// https://plugins.gradle.org/plugin/com.diffplug.spotless
...
...
@@ -11,9 +11,9 @@ plugins {
ext
{
// Spotless
// https://www.npmjs.com/package/prettier
prettierVersion
=
'2.
7.1
'
prettierVersion
=
'2.
8.0
'
// https://www.npmjs.com/package/prettier-plugin-java
prettierJavaVersion
=
'
1.6.2
'
prettierJavaVersion
=
'
2.0.0
'
// SpringCloud
// https://start.spring.io/
...
...
@@ -23,23 +23,23 @@ ext {
// https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-spring-boot-starter
knife4jVersion
=
'2.0.9'
// https://mvnrepository.com/artifact/io.swagger/swagger-annotations
swaggerAnnotationsVersion
=
'1.6.
8
'
swaggerAnnotationsVersion
=
'1.6.
9
'
// https://mvnrepository.com/artifact/cn.dev33/sa-token-spring-boot-starter
saTokenVersion
=
'1.3
1.1.trial
'
saTokenVersion
=
'1.3
3.0
'
// https://mvnrepository.com/artifact/cn.hutool/hutool-all
hutoolVersion
=
'5.8.
8
'
hutoolVersion
=
'5.8.
10
'
// https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2
fastJsonVersion
=
'2.0.
15
'
fastJsonVersion
=
'2.0.
20
'
// https://mvnrepository.com/artifact/com.xuxueli/xxl-job-core
xxlJobVersion
=
'2.3.1'
// https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
okhttpVersion
=
'4.10.0'
// https://mvnrepository.com/artifact/io.minio/minio
minioVersion
=
'8.4.
5
'
minioVersion
=
'8.4.
6
'
// https://mvnrepository.com/artifact/com.vladmihalcea/hibernate-types-55
hibernateTypesVersion
=
'2.20.0'
// https://mvnrepository.com/artifact/org.hibernate/hibernate-spatial
hibernateSpatialVersion
=
'5.6.1
2
.Final'
hibernateSpatialVersion
=
'5.6.1
4
.Final'
// https://mvnrepository.com/artifact/org.locationtech.jts/jts-core
jtsVersion
=
'1.19.0'
// https://mvnrepository.com/artifact/com.github.liaochong/myexcel
...
...
@@ -90,9 +90,11 @@ subprojects {
[
compileJava
,
compileTestJava
,
javadoc
]*.
options
*.
encoding
=
'UTF-8'
tasks
.
withType
(
JavaCompile
)
{
tasks
.
withType
(
JavaCompile
).
tap
{
configureEach
{
options
.
encoding
=
'UTF-8'
}
}
bootJar
{
enabled
=
false
...
...
doc/plugins.md
浏览文件 @
c7c545bf
...
...
@@ -4,15 +4,12 @@
<!-- prettier-ignore -->
-
⭐
[
IDE Eval Rest
](
https://www.cnblogs.com/wang-cong/p/15150585.html
)
- IDEA 无限重置试用插件
-
⭐
[
GitHub Copilot
](
https://plugins.jetbrains.com/plugin/17718-github-copilot
)
-
⭐
[
.ignore
](
https://plugins.jetbrains.com/plugin/7495--ignore
)
-
⭐
[
GitToolBox
](
https://plugins.jetbrains.com/plugin/7499-gittoolbox
)
-
⭐
[
Grep Console
](
https://plugins.jetbrains.com/plugin/7125-grep-console
)
-
⭐
[
Rainbow Brackets
](
https://plugins.jetbrains.com/plugin/10080-rainbow-brackets
)
-
⭐
[
Spotless Gradle
](
https://plugins.jetbrains.com/plugin/18321-spotless-gradle
)
-
⭐
[
Easy I18n
](
https://plugins.jetbrains.com/plugin/16316-easy-i18n
)
-
⭐
[
Save Actions
](
https://plugins.jetbrains.com/plugin/7642-save-actions
)
-
⭐
[
String Manipulation
](
https://plugins.jetbrains.com/plugin/2162-string-manipulation
)
-
⭐
[
Resource Bundle Editor
](
https://plugins.jetbrains.com/plugin/17035-resource-bundle-editor
)
-
[
Prettier
](
https://plugins.jetbrains.com/plugin/10456-prettier
)
-
[
Nyan Progress Bar
](
https://plugins.jetbrains.com/plugin/8575-nyan-progress-bar
)
-
[
JPA Buddy
](
https://plugins.jetbrains.com/plugin/15075-jpa-buddy
)
doc/technique.md
浏览文件 @
c7c545bf
...
...
@@ -3,7 +3,8 @@
### 基础
<!-- prettier-ignore -->
-
[
SpringBoot v2.6.x
](
https://spring.io/projects/spring-boot
)
-
[
SpringBoot v2.7.x
](
https://spring.io/projects/spring-boot
)
-
[
Lombok
](
https://projectlombok.org/
)
-
[
Spring Web
](
https://docs.spring.io/spring-framework/docs/current/reference/html/web.html
)
-
[
Spring Data Jpa
](
https://spring.io/projects/spring-data-jpa
)
...
...
@@ -12,33 +13,39 @@
### Tools
<!-- prettier-ignore -->
-
[
Hutool
](
https://www.hutool.cn/
)
工具包
-
[
FastJson
](
https://github.com/alibaba/fastjson
)
JSON 工具包
### Doc
<!-- prettier-ignore -->
-
[
Knife4j
](
https://doc.xiaominfo.com/
)
Swagger 增强包
### 扩展
<!-- prettier-ignore -->
-
[
sa-token
](
https://sa-token.dev33.cn/
)
权限认证框架
-
[
MinIO
](
https://docs.min.io/
)
文件存储
### 可选
<!-- prettier-ignore -->
-
[
MyBatis Plus
](
https://baomidou.com/
)
MyBatis 增强包(允许与 JPA 混合使用)
### 构建工具
<!-- prettier-ignore -->
-
[
Gradle
](
https://gradle.org/
)
### 其他
<!-- prettier-ignore -->
-
[
spotless
](
https://github.com/diffplug/spotless
)
代码规范工具
-
[
commitizen
](
https://github.com/commitizen
)
Git 提交规范工具
-
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论