| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
- http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.lingyue</groupId>
- <artifactId>lingyue-zhibao</artifactId>
- <version>2.0.0</version>
- </parent>
- <artifactId>graph-service</artifactId>
- <packaging>jar</packaging>
- <name>Graph Service</name>
- <description>关系网络服务 - 关系网络构建、逻辑计算</description>
- <dependencies>
- <!-- Spring Boot Web -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
-
- <!-- Spring WebFlux (用于 WebClient) -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-webflux</artifactId>
- </dependency>
-
- <!-- AI Service (用于 DeepSeek 客户端) -->
- <dependency>
- <groupId>com.lingyue</groupId>
- <artifactId>ai-service</artifactId>
- <version>${project.version}</version>
- <optional>true</optional>
- </dependency>
-
- <!-- MyBatis Plus -->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- </dependency>
-
- <!-- PostgreSQL Driver -->
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- </dependency>
-
- <!-- Nacos Service Discovery (单体应用设为 optional) -->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
- <optional>true</optional>
- </dependency>
-
- <!-- Common Module -->
- <dependency>
- <groupId>com.lingyue</groupId>
- <artifactId>common</artifactId>
- </dependency>
-
- <!-- Document Service (用于 DocumentElement 实体) -->
- <dependency>
- <groupId>com.lingyue</groupId>
- <artifactId>document-service</artifactId>
- <version>${project.version}</version>
- </dependency>
-
- <!-- Lombok -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <optional>true</optional>
- </dependency>
-
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|