pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.tycoding</groupId>
  7. <artifactId>langchat</artifactId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>langchat-aigc</artifactId>
  12. <version>${revision}</version>
  13. <dependencies>
  14. <!-- Modules -->
  15. <dependency>
  16. <groupId>cn.tycoding</groupId>
  17. <artifactId>langchat-common</artifactId>
  18. </dependency>
  19. <!-- Spring -->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-aop</artifactId>
  27. </dependency>
  28. <!-- MySql -->
  29. <dependency>
  30. <groupId>com.mysql</groupId>
  31. <artifactId>mysql-connector-j</artifactId>
  32. </dependency>
  33. <!-- Excel -->
  34. <dependency>
  35. <groupId>com.pig4cloud.excel</groupId>
  36. <artifactId>excel-spring-boot-starter</artifactId>
  37. <version>3.2.1</version>
  38. <exclusions>
  39. <exclusion>
  40. <artifactId>poi-ooxml-schemas</artifactId>
  41. <groupId>org.apache.poi</groupId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. </dependencies>
  46. </project>