Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-api-boot
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-api-boot
Commits
59f27a58
提交
59f27a58
authored
5月 13, 2024
作者:
方治民
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: 优化 doc 模块的依赖关系配置
上级
93521943
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
11 行增加
和
24 行删除
+11
-24
build.gradle
basic-common/core/build.gradle
+5
-8
build.gradle
basic-common/doc/build.gradle
+0
-3
SwaggerConfig.java
...rc/main/java/com/yiring/common/swagger/SwaggerConfig.java
+0
-5
build.gradle
basic-common/minio/build.gradle
+1
-3
build.gradle
basic-dict/build.gradle
+1
-3
build.gradle
build.gradle
+4
-2
没有找到文件。
basic-common/core/build.gradle
浏览文件 @
59f27a58
...
@@ -2,6 +2,7 @@ dependencies {
...
@@ -2,6 +2,7 @@ dependencies {
implementation
project
(
":basic-common:util"
)
implementation
project
(
":basic-common:util"
)
implementation
project
(
":basic-common:i18n"
)
implementation
project
(
":basic-common:i18n"
)
implementation
project
(
":basic-common:redis"
)
implementation
project
(
":basic-common:redis"
)
implementation
project
(
":basic-common:doc"
)
implementation
'org.springframework.boot:spring-boot-starter-aop'
implementation
'org.springframework.boot:spring-boot-starter-aop'
implementation
'org.springframework.boot:spring-boot-starter-web'
implementation
'org.springframework.boot:spring-boot-starter-web'
...
@@ -9,24 +10,20 @@ dependencies {
...
@@ -9,24 +10,20 @@ dependencies {
implementation
'org.springframework.boot:spring-boot-starter-data-redis'
implementation
'org.springframework.boot:spring-boot-starter-data-redis'
implementation
'org.springframework.boot:spring-boot-starter-validation'
implementation
'org.springframework.boot:spring-boot-starter-validation'
// swagger(knife4j)
implementation
"com.github.xiaoymin:knife4j-openapi3-jakarta-spring-boot-starter:${knife4jOpen3Version}"
// hutool-extra
// hutool-extra
implementation
"cn.hutool:hutool-extra:${hutoolVersion}"
implementation
"cn.hutool:hutool-extra:${hutoolVersion}"
// fastjson
// fastjson
implementation
"com.alibaba.fastjson2:fastjson2:${fastJsonVersion}"
implementation
"com.alibaba.fastjson2:fastjson2:${fastJsonVersion}"
// JTS 几何对象操作库
implementation
"org.locationtech.jts:jts-core:${jtsVersion}"
// https://github.com/vladmihalcea/hypersistence-utils
// https://github.com/vladmihalcea/hypersistence-utils
// hypersistence-utils-hibernate-63
// hypersistence-utils-hibernate-63
implementation
"io.hypersistence:hypersistence-utils-hibernate-63:${hibernateTypesVersion}"
implementation
"io.hypersistence:hypersistence-utils-hibernate-63:${hibernateTypesVersion}"
// https://mvnrepository.com/artifact/org.n52.jackson/jackson-datatype-jts/1.2.10
// JTS 几何对象操作库
implementation
(
"org.n52.jackson:jackson-datatype-jts:1.2.10"
)
{
implementation
"org.locationtech.jts:jts-core:${jtsVersion}"
// https://mvnrepository.com/artifact/org.n52.jackson/jackson-datatype-jts
implementation
(
"org.n52.jackson:jackson-datatype-jts:${jacksonDatatypeJtsVersion}"
)
{
exclude
group:
'com.fasterxml.jackson.core'
exclude
group:
'com.fasterxml.jackson.core'
exclude
group:
'org.locationtech.jts'
exclude
group:
'org.locationtech.jts'
}
}
...
...
basic-common/doc/build.gradle
浏览文件 @
59f27a58
dependencies
{
dependencies
{
implementation
project
(
":basic-common:core"
)
implementation
project
(
":basic-common:i18n"
)
implementation
'org.springframework.boot:spring-boot-starter-web'
implementation
'org.springframework.boot:spring-boot-starter-web'
implementation
'org.springframework.boot:spring-boot-starter-validation'
implementation
'org.springframework.boot:spring-boot-starter-validation'
...
...
basic-common/doc/src/main/java/com/yiring/common/swagger/SwaggerConfig.java
浏览文件 @
59f27a58
...
@@ -5,7 +5,6 @@ import cn.hutool.core.convert.Convert;
...
@@ -5,7 +5,6 @@ import cn.hutool.core.convert.Convert;
import
cn.hutool.core.lang.Console
;
import
cn.hutool.core.lang.Console
;
import
cn.hutool.core.net.NetUtil
;
import
cn.hutool.core.net.NetUtil
;
import
cn.hutool.core.util.StrUtil
;
import
cn.hutool.core.util.StrUtil
;
import
com.yiring.common.core.I18n
;
import
io.swagger.v3.oas.models.ExternalDocumentation
;
import
io.swagger.v3.oas.models.ExternalDocumentation
;
import
io.swagger.v3.oas.models.OpenAPI
;
import
io.swagger.v3.oas.models.OpenAPI
;
import
io.swagger.v3.oas.models.info.Contact
;
import
io.swagger.v3.oas.models.info.Contact
;
...
@@ -26,7 +25,6 @@ import org.springframework.context.annotation.Bean;
...
@@ -26,7 +25,6 @@ import org.springframework.context.annotation.Bean;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.Profile
;
import
org.springframework.context.annotation.Profile
;
import
org.springframework.core.annotation.Order
;
import
org.springframework.core.annotation.Order
;
import
org.springframework.core.env.Environment
;
import
org.springframework.web.bind.annotation.DeleteMapping
;
import
org.springframework.web.bind.annotation.DeleteMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PutMapping
;
import
org.springframework.web.bind.annotation.PutMapping
;
...
@@ -63,9 +61,6 @@ public class SwaggerConfig implements CommandLineRunner {
...
@@ -63,9 +61,6 @@ public class SwaggerConfig implements CommandLineRunner {
@Value
(
"${app.version}"
)
@Value
(
"${app.version}"
)
String
appVersion
;
String
appVersion
;
final
I18n
i18n
;
final
Environment
environment
;
@Bean
@Bean
public
OpenAPI
api
()
{
public
OpenAPI
api
()
{
Info
info
=
new
Info
()
Info
info
=
new
Info
()
...
...
basic-common/minio/build.gradle
浏览文件 @
59f27a58
...
@@ -5,13 +5,11 @@ plugins {
...
@@ -5,13 +5,11 @@ plugins {
dependencies
{
dependencies
{
implementation
project
(
":basic-common:core"
)
implementation
project
(
":basic-common:core"
)
implementation
project
(
":basic-common:util"
)
implementation
project
(
":basic-common:util"
)
implementation
project
(
":basic-common:doc"
)
implementation
'org.springframework.boot:spring-boot-starter-web'
implementation
'org.springframework.boot:spring-boot-starter-web'
implementation
'org.springframework.boot:spring-boot-starter-validation'
implementation
'org.springframework.boot:spring-boot-starter-validation'
// swagger(knife4j)
implementation
"com.github.xiaoymin:knife4j-openapi3-jakarta-spring-boot-starter:${knife4jOpen3Version}"
// minio
// minio
api
"io.minio:minio:${minioVersion}"
api
"io.minio:minio:${minioVersion}"
...
...
basic-dict/build.gradle
浏览文件 @
59f27a58
dependencies
{
dependencies
{
implementation
project
(
':basic-common:core'
)
implementation
project
(
':basic-common:core'
)
implementation
project
(
':basic-common:util'
)
implementation
project
(
':basic-common:util'
)
implementation
project
(
':basic-common:doc'
)
implementation
'org.springframework.boot:spring-boot-starter-data-jpa'
implementation
'org.springframework.boot:spring-boot-starter-data-jpa'
implementation
'org.springframework.boot:spring-boot-starter-validation'
implementation
'org.springframework.boot:spring-boot-starter-validation'
// swagger(knife4j)
implementation
"com.github.xiaoymin:knife4j-openapi3-jakarta-spring-boot-starter:${knife4jOpen3Version}"
// hutool-core
// hutool-core
implementation
"cn.hutool:hutool-core:${hutoolVersion}"
implementation
"cn.hutool:hutool-core:${hutoolVersion}"
...
...
build.gradle
浏览文件 @
59f27a58
...
@@ -41,11 +41,11 @@ ext {
...
@@ -41,11 +41,11 @@ ext {
// https://central.sonatype.com/artifact/io.swagger.core.v3/swagger-annotations
// https://central.sonatype.com/artifact/io.swagger.core.v3/swagger-annotations
swaggerAnnotationsVersion
=
'2.2.21'
swaggerAnnotationsVersion
=
'2.2.21'
// https://central.sonatype.com/artifact/cn.dev33/sa-token-spring-boot3-starter
// https://central.sonatype.com/artifact/cn.dev33/sa-token-spring-boot3-starter
saTokenVersion
=
'1.3
7
.0'
saTokenVersion
=
'1.3
8
.0'
// https://central.sonatype.com/artifact/cn.hutool/hutool-core
// https://central.sonatype.com/artifact/cn.hutool/hutool-core
hutoolVersion
=
'5.8.27'
hutoolVersion
=
'5.8.27'
// https://central.sonatype.com/artifact/com.alibaba.fastjson2/fastjson2
// https://central.sonatype.com/artifact/com.alibaba.fastjson2/fastjson2
fastJsonVersion
=
'2.0.
49
'
fastJsonVersion
=
'2.0.
50
'
// https://central.sonatype.com/artifact/com.xuxueli/xxl-job-core
// https://central.sonatype.com/artifact/com.xuxueli/xxl-job-core
xxlJobVersion
=
'2.4.1'
xxlJobVersion
=
'2.4.1'
// https://central.sonatype.com/artifact/io.minio/minio
// https://central.sonatype.com/artifact/io.minio/minio
...
@@ -56,6 +56,8 @@ ext {
...
@@ -56,6 +56,8 @@ ext {
hibernateSpatialVersion
=
'6.4.8.Final'
hibernateSpatialVersion
=
'6.4.8.Final'
// https://central.sonatype.com/artifact/org.locationtech.jts/jts-core
// https://central.sonatype.com/artifact/org.locationtech.jts/jts-core
jtsVersion
=
'1.19.0'
jtsVersion
=
'1.19.0'
// https://mvnrepository.com/artifact/org.n52.jackson/jackson-datatype-jts
jacksonDatatypeJtsVersion
=
'1.2.10'
// https://central.sonatype.com/artifact/com.github.liaochong/myexcel
// https://central.sonatype.com/artifact/com.github.liaochong/myexcel
myexcelVersion
=
'4.5.1'
myexcelVersion
=
'4.5.1'
// https://central.sonatype.com/artifact/org.jetbrains/annotations
// https://central.sonatype.com/artifact/org.jetbrains/annotations
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论