Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-boot-starters
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-boot-starters
提交
0ce14452
提交
0ce14452
编写于
12月 08, 2022
作者:
hebao@lab.ibiz5.com
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
安全扫描,依赖组件包升级
上级
01be3306
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
177 行增加
和
2 行删除
+177
-2
pom.xml
ibizlab-boot-starter-data/pom.xml
+69
-0
pom.xml
ibizlab-boot-starter-parent/pom.xml
+98
-2
pom.xml
ibizlab-boot-starter/pom.xml
+10
-0
未找到文件。
ibizlab-boot-starter-data/pom.xml
浏览文件 @
0ce14452
...
...
@@ -108,6 +108,14 @@
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-slf4j-impl
</artifactId>
</exclusion>
<exclusion>
<artifactId>
log4j-core
</artifactId>
<groupId>
org.apache.logging.log4j
</groupId>
</exclusion>
<exclusion>
<artifactId>
liquibase-core
</artifactId>
<groupId>
org.liquibase
</groupId>
</exclusion>
</exclusions>
</dependency>
...
...
@@ -116,6 +124,67 @@
<artifactId>
reflections
</artifactId>
</dependency>
<dependency>
<groupId>
com.thoughtworks.xstream
</groupId>
<artifactId>
xstream
</artifactId>
</dependency>
<dependency>
<groupId>
org.apache.xmlbeans
</groupId>
<artifactId>
xmlbeans
</artifactId>
</dependency>
<dependency>
<groupId>
com.cronutils
</groupId>
<artifactId>
cron-utils
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-beans
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.codehaus.jettison
</groupId>
<artifactId>
jettison
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-openfeign-core
</artifactId>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
</dependency>
<dependency>
<groupId>
org.yaml
</groupId>
<artifactId>
snakeyaml
</artifactId>
</dependency>
<dependency>
<groupId>
com.google.protobuf
</groupId>
<artifactId>
protobuf-java
</artifactId>
</dependency>
<dependency>
<groupId>
com.fasterxml.woodstox
</groupId>
<artifactId>
woodstox-core
</artifactId>
</dependency>
<dependency>
<groupId>
io.netty
</groupId>
<artifactId>
netty-all
</artifactId>
</dependency>
<dependency>
<groupId>
io.netty
</groupId>
<artifactId>
netty-handler
</artifactId>
</dependency>
<dependency>
<groupId>
io.netty
</groupId>
<artifactId>
netty-codec
</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
ibizlab-boot-starter-parent/pom.xml
浏览文件 @
0ce14452
...
...
@@ -6,7 +6,7 @@
<parent>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.4.
0
</version>
<version>
2.4.
13
</version>
<relativePath/>
</parent>
<modelVersion>
4.0.0
</modelVersion>
...
...
@@ -72,6 +72,23 @@
<maven-jar-plugin.version>
3.1.1
</maven-jar-plugin.version>
<h2.version>
2.0.206
</h2.version>
<undertow.version>
2.2.19.Final
</undertow.version>
<xstream.version>
1.4.16
</xstream.version>
<xmlbeans.version>
3.0.0
</xmlbeans.version>
<cron-utils.version>
9.1.6
</cron-utils.version>
<spring-beans.version>
5.3.18
</spring-beans.version>
<spring-security-web.version>
5.5.7
</spring-security-web.version>
<spring-web.version>
5.3.7
</spring-web.version>
<jettison.version>
1.5.1
</jettison.version>
<spring-cloud-openfeign-core.version>
3.0.5
</spring-cloud-openfeign-core.version>
<jackson-databind.version>
2.13.4
</jackson-databind.version>
<snakeyaml.version>
1.31
</snakeyaml.version>
<protobuf-java.version>
3.21.7
</protobuf-java.version>
<woodstox-core.version>
5.4.0
</woodstox-core.version>
<netty.version>
4.1.68.Final
</netty.version>
<maven.deploy.skip>
false
</maven.deploy.skip>
</properties>
...
...
@@ -297,7 +314,86 @@
<version>
${reflections.version}
</version>
</dependency>
<dependency>
<groupId>
com.thoughtworks.xstream
</groupId>
<artifactId>
xstream
</artifactId>
<version>
${xstream.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.xmlbeans
</groupId>
<artifactId>
xmlbeans
</artifactId>
<version>
${xmlbeans.version}
</version>
</dependency>
<dependency>
<groupId>
com.cronutils
</groupId>
<artifactId>
cron-utils
</artifactId>
<version>
${cron-utils.version}
</version>
</dependency>
<dependency>
<groupId>
com.cronutils
</groupId>
<artifactId>
cron-utils
</artifactId>
<version>
${cron-utils.version}
</version>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-beans
</artifactId>
<version>
${spring-beans.version}
</version>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-web
</artifactId>
<version>
${spring-security-web.version}
</version>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-web
</artifactId>
<version>
${spring-web.version}
</version>
</dependency>
<dependency>
<groupId>
org.codehaus.jettison
</groupId>
<artifactId>
jettison
</artifactId>
<version>
${jettison.version}
</version>
</dependency>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-openfeign-core
</artifactId>
<version>
${spring-cloud-openfeign-core.version}
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
<version>
${jackson-databind.version}
</version>
</dependency>
<dependency>
<groupId>
org.yaml
</groupId>
<artifactId>
snakeyaml
</artifactId>
<version>
${snakeyaml.version}
</version>
</dependency>
<dependency>
<groupId>
com.google.protobuf
</groupId>
<artifactId>
protobuf-java
</artifactId>
<version>
${protobuf-java.version}
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.woodstox
</groupId>
<artifactId>
woodstox-core
</artifactId>
<version>
${woodstox-core.version}
</version>
</dependency>
<dependency>
<groupId>
io.netty
</groupId>
<artifactId>
netty-all
</artifactId>
<version>
${netty.version}
</version>
</dependency>
<dependency>
<groupId>
io.netty
</groupId>
<artifactId>
netty-handler
</artifactId>
<version>
${netty.version}
</version>
</dependency>
<dependency>
<groupId>
io.netty
</groupId>
<artifactId>
netty-codec
</artifactId>
<version>
${netty.version}
</version>
</dependency>
</dependencies>
</dependencyManagement>
...
...
ibizlab-boot-starter/pom.xml
浏览文件 @
0ce14452
...
...
@@ -163,6 +163,16 @@
<groupId>
com.github.xiaoymin
</groupId>
<artifactId>
knife4j-spring-boot-starter
</artifactId>
</dependency>
<dependency>
<groupId>
com.thoughtworks.xstream
</groupId>
<artifactId>
xstream
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-beans
</artifactId>
</dependency>
</dependencies>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录