升级spring-cloud-commons至4.1.4.

This commit is contained in:
nieqiurong 2024-07-11 18:35:44 +08:00
parent 1a27a248a4
commit d84d451ce7
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ dependencies {
implementation "${lib['mybatis-thymeleaf']}"
implementation "${lib.'mybatis-velocity'}"
implementation "${lib.'mybatis-freemarker'}"
implementation "org.springframework.cloud:spring-cloud-commons:4.1.3"
implementation "org.springframework.cloud:spring-cloud-commons:4.1.4"
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3"
testImplementation "${lib.h2}"

View File

@ -60,7 +60,7 @@ class GeneratePomTest {
Dependency bom = dependenciesMap.get("spring-boot-dependencies");
Assertions.assertEquals("import", bom.getScope());
Assertions.assertFalse(bom.isOptional());
Assertions.assertEquals(dependenciesMap.get("spring-cloud-commons").getVersion(), "4.1.3");
Assertions.assertEquals(dependenciesMap.get("spring-cloud-commons").getVersion(), "4.1.4");
Assertions.assertEquals(dependenciesMap.get("mybatis-spring").getVersion(), "3.0.3");
Assertions.assertEquals(dependenciesMap.get("spring-boot-dependencies").getVersion(), "3.3.1");
}