pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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. <packaging>jar</packaging>
  14. <dependencies>
  15. <!-- Modules -->
  16. <dependency>
  17. <groupId>cn.tycoding</groupId>
  18. <artifactId>langchat-common</artifactId>
  19. </dependency>
  20. <!-- Spring -->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-aop</artifactId>
  28. </dependency>
  29. <!-- MySql -->
  30. <dependency>
  31. <groupId>com.mysql</groupId>
  32. <artifactId>mysql-connector-j</artifactId>
  33. </dependency>
  34. <!-- Excel -->
  35. <dependency>
  36. <groupId>com.pig4cloud.excel</groupId>
  37. <artifactId>excel-spring-boot-starter</artifactId>
  38. <version>3.2.1</version>
  39. <exclusions>
  40. <exclusion>
  41. <artifactId>poi-ooxml-schemas</artifactId>
  42. <groupId>org.apache.poi</groupId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. </dependencies>
  47. </project>