添加 模版生成相关依赖

This commit is contained in:
2026-01-12 09:17:24 +08:00
parent f07fee186d
commit 2c2ac6d032
7 changed files with 264 additions and 6 deletions

14
pom.xml
View File

@@ -22,6 +22,7 @@
<knife4j.version>4.4.0</knife4j.version>
<hibernate-validator.version>9.1.0.Final</hibernate-validator.version>
<springdoc-openapi-starter-webmvc-ui.version>2.8.15</springdoc-openapi-starter-webmvc-ui.version>
<ST4.version>4.3.4</ST4.version>
</properties>
<dependencies>
@@ -96,6 +97,19 @@
<artifactId>hibernate-validator</artifactId>
<version>${hibernate-validator.version}</version>
</dependency>
<!-- stringtemplate ST4-->
<dependency>
<groupId>org.antlr</groupId>
<artifactId>ST4</artifactId>
<version>${ST4.version}</version>
</dependency>
<!-- 测试 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>