pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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
  5. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>com.lingyue</groupId>
  9. <artifactId>lingyue-zhibao</artifactId>
  10. <version>2.0.0</version>
  11. </parent>
  12. <artifactId>graph-service</artifactId>
  13. <packaging>jar</packaging>
  14. <name>Graph Service</name>
  15. <description>关系网络服务 - 关系网络构建、逻辑计算</description>
  16. <dependencies>
  17. <!-- Spring Boot Web -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <!-- Spring WebFlux (用于 WebClient) -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-webflux</artifactId>
  26. </dependency>
  27. <!-- AI Service (用于 DeepSeek 客户端) -->
  28. <dependency>
  29. <groupId>com.lingyue</groupId>
  30. <artifactId>ai-service</artifactId>
  31. <version>${project.version}</version>
  32. <optional>true</optional>
  33. </dependency>
  34. <!-- MyBatis Plus -->
  35. <dependency>
  36. <groupId>com.baomidou</groupId>
  37. <artifactId>mybatis-plus-boot-starter</artifactId>
  38. </dependency>
  39. <!-- PostgreSQL Driver -->
  40. <dependency>
  41. <groupId>org.postgresql</groupId>
  42. <artifactId>postgresql</artifactId>
  43. </dependency>
  44. <!-- Nacos Service Discovery (单体应用设为 optional) -->
  45. <dependency>
  46. <groupId>com.alibaba.cloud</groupId>
  47. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  48. <optional>true</optional>
  49. </dependency>
  50. <!-- Common Module -->
  51. <dependency>
  52. <groupId>com.lingyue</groupId>
  53. <artifactId>common</artifactId>
  54. </dependency>
  55. <!-- Document Service (用于 DocumentElement 实体) -->
  56. <dependency>
  57. <groupId>com.lingyue</groupId>
  58. <artifactId>document-service</artifactId>
  59. <version>${project.version}</version>
  60. </dependency>
  61. <!-- Lombok -->
  62. <dependency>
  63. <groupId>org.projectlombok</groupId>
  64. <artifactId>lombok</artifactId>
  65. <optional>true</optional>
  66. </dependency>
  67. </dependencies>
  68. <build>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-maven-plugin</artifactId>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>