pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="UTF-8"?>
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>takai</artifactId>
  7. <groupId>com.takai</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>takai-ai</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <description>
  17. takaiAI模块
  18. </description>
  19. <dependencies>
  20. <!-- 通用工具-->
  21. <dependency>
  22. <groupId>com.takai</groupId>
  23. <artifactId>takai-common</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-webmvc</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.squareup.okhttp3</groupId>
  35. <artifactId>okhttp</artifactId>
  36. <version>4.9.3</version>
  37. <!-- <exclusions>-->
  38. <!-- <exclusion>-->
  39. <!-- <groupId>com.squareup.okio</groupId>-->
  40. <!-- <artifactId>okio</artifactId>-->
  41. <!-- </exclusion>-->
  42. <!-- </exclusions>-->
  43. </dependency>
  44. <dependency>
  45. <groupId>io.minio</groupId>
  46. <artifactId>minio</artifactId>
  47. <version>7.1.4</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.squareup.okhttp3</groupId>
  51. <artifactId>okhttp-sse</artifactId>
  52. <version>4.9.3</version>
  53. </dependency>
  54. </dependencies>
  55. </project>