|
|
@@ -22,7 +22,7 @@
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
+ <dependency>
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
<artifactId>spring-ai-openai-spring-boot-starter</artifactId>
|
|
|
</dependency>
|
|
|
@@ -48,6 +48,19 @@
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
+ <!--fastjson-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>2.0.32</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
+ <version>5.8.32</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
</dependencies>
|
|
|
<dependencyManagement>
|
|
|
<dependencies>
|
|
|
@@ -67,6 +80,16 @@
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
</plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>io.github.git-commit-id</groupId>
|
|
|
+ <artifactId>git-commit-id-maven-plugin</artifactId>
|
|
|
+ <version>9.0.0</version>
|
|
|
+ <configuration>
|
|
|
+ <generateGitPropertiesFile>true</generateGitPropertiesFile>
|
|
|
+ <format>json</format>
|
|
|
+ <commitIdGenerationMode>full</commitIdGenerationMode>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
<repositories>
|