升级依赖.

This commit is contained in:
聂秋荣 2024-10-21 14:45:02 +08:00
parent 4c81c10b7d
commit e1b68f53cb
4 changed files with 6 additions and 8 deletions

View File

@ -1,4 +0,0 @@
kotlin version: 2.0.20
error message: The daemon has terminated unexpectedly on startup attempt #1 with error code: 0. The daemon process output:
1. Kotlin compile daemon is ready

View File

@ -16,7 +16,7 @@ ext {
mybatisSpringBootStarterVersion = '2.3.2',
springVersion = '5.3.39',
springBootVersion = '2.7.18',
springBoot3Version = '3.3.3',
springBoot3Version = '3.3.4',
springCloudVersion = '3.1.8',
junitVersion = '5.11.0',
]
@ -63,7 +63,7 @@ ext {
//cache
"mybatis-caffeine" : "org.mybatis.caches:mybatis-caffeine:1.2.0",
//code generator
"velocity" : "org.apache.velocity:velocity-engine-core:2.3",
"velocity" : "org.apache.velocity:velocity-engine-core:2.4",
"freemarker" : "org.freemarker:freemarker:2.3.33",
"beetl" : "com.ibeetl:beetl:3.17.0.RELEASE",
"swagger-annotations" : "io.swagger:swagger-annotations:1.6.14",

View File

@ -1,5 +1,7 @@
- opt: 优化代码生成器支持可视化配置生成能力
- opt: 解耦扩展包不再强制依赖 spring 开发框架
- opt: 拆分jsqlparser支持模块,提供mybatis-plus-jsqlparser(支持最新jsqlparser)与mybatis-plus-jsqlparser-4.9模块, 默认不携带,升级后需要自行引入.
- feat: 重构 service 模块抽象为 CrudRepository 不再建议使用 IService 避免业务层数据混乱
- feat: 新增 solon 启动插件支持
- feat: 升级SpringBoot3.3.4
- feat: 升级velocity2.4

View File

@ -62,7 +62,7 @@ class GeneratePomTest {
Assertions.assertFalse(bom.isOptional());
Assertions.assertEquals(dependenciesMap.get("spring-cloud-commons").getVersion(), "4.1.4");
Assertions.assertEquals(dependenciesMap.get("mybatis-spring").getVersion(), "3.0.4");
Assertions.assertEquals(dependenciesMap.get("spring-boot-dependencies").getVersion(), "3.3.3");
Assertions.assertEquals(dependenciesMap.get("spring-boot-dependencies").getVersion(), "3.3.4");
}
}