pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  5. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>cn.lttc.modules</groupId>
  9. <artifactId>aichat</artifactId>
  10. <version>${revision}</version>
  11. </parent>
  12. <artifactId>aichat-api</artifactId>
  13. <packaging>jar</packaging>
  14. <description>aichat 接口模块</description>
  15. <dependencies>
  16. <!-- core 工具类 -->
  17. <dependency>
  18. <groupId>cn.lttc.modules</groupId>
  19. <artifactId>lttcai-common-core</artifactId>
  20. </dependency>
  21. <!--feign 注解依赖-->
  22. <dependency>
  23. <groupId>org.springframework.cloud</groupId>
  24. <artifactId>spring-cloud-openfeign-core</artifactId>
  25. <optional>true</optional>
  26. </dependency>
  27. <!--mybatis 依赖-->
  28. <dependency>
  29. <groupId>cn.lttc.modules</groupId>
  30. <artifactId>lttcai-common-mybatis</artifactId>
  31. </dependency>
  32. <!-- excel 导入导出 https://github.com/pig-mesh/excel-spring-boot-starter -->
  33. <dependency>
  34. <groupId>com.pig4cloud.excel</groupId>
  35. <artifactId>excel-spring-boot-starter</artifactId>
  36. </dependency>
  37. </dependencies>
  38. </project>