| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- <?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.giantan.mds</groupId>
- <artifactId>mds</artifactId>
- <version>1.0.0</version>
- </parent>
- <version>2.1.1</version>
- <artifactId>mdserver</artifactId>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <spring.boot.version>3.5.4</spring.boot.version>
- <spring-ai.version>1.0.1</spring-ai.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-cache</artifactId>
- <version>${spring.boot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <version>${spring.boot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-jdbc</artifactId>
- <version>${spring.boot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-advisors-vector-store</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-starter-model-chat-memory</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-starter-model-openai</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-starter-model-deepseek</artifactId>
- </dependency>
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <!-- <scope>runtime</scope>-->
- <version>42.7.5</version>
- </dependency>
- <dependency>
- <groupId>org.apache.age</groupId>
- <artifactId>jdbc</artifactId>
- <version>1.0.0</version>
- <!-- <scope>system</scope>-->
- <!-- <systemPath>${project.basedir}/lib/agelib.jar</systemPath>-->
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.38</version>
- <!-- <optional>true</optional>-->
- <scope>provided</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/io.swagger/swagger-annotations -->
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-annotations</artifactId>
- <version>1.6.9</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <!-- <version>33.4.8-jre</version>-->
- <version>32.1.3-jre</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine -->
- <dependency>
- <groupId>com.github.ben-manes.caffeine</groupId>
- <artifactId>caffeine</artifactId>
- <version>3.1.8</version>
- </dependency>
- <dependency>
- <groupId>org.cnnlp.data.md</groupId>
- <artifactId>gtbook</artifactId>
- <version>1.0.0</version>
- <!-- <scope>compile</scope>-->
- <!-- <exclusions>-->
- <!-- <exclusion>-->
- <!-- <groupId>org.slf4j</groupId>-->
- <!-- <artifactId>slf4j-simple</artifactId>-->
- <!-- </exclusion>-->
- <!-- </exclusions>-->
- </dependency>
- <dependency>
- <groupId>com.giantan.gfs</groupId>
- <artifactId>gfs</artifactId>
- <version>1.0.0</version>
- <!-- <scope>compile</scope>-->
- <!-- <exclusions>-->
- <!-- <exclusion>-->
- <!-- <groupId>org.slf4j</groupId>-->
- <!-- <artifactId>slf4j-simple</artifactId>-->
- <!-- </exclusion>-->
- <!-- </exclusions>-->
- </dependency>
- <dependency>
- <groupId>com.giantan.mds</groupId>
- <artifactId>tools</artifactId>
- <version>1.0.0</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.giantan.ai.domain</groupId>-->
- <!-- <artifactId>kvs</artifactId>-->
- <!-- <version>1.0.0</version>-->
- <!-- <!– <scope>compile</scope>–>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.giantan</groupId>
- <artifactId>oe</artifactId>
- <version>8.11.3.20</version>
- <!-- <version>8.1.210123</version>-->
- <!-- <scope>system</scope>-->
- <!-- <systemPath>${project.basedir}/lib/oe.jar</systemPath>-->
- </dependency>
- <dependency>
- <groupId>net.sf.trove4j</groupId>
- <artifactId>trove4j</artifactId>
- <version>2.1.0</version>
- </dependency>
- <dependency>
- <groupId>com.caucho</groupId>
- <artifactId>hessian</artifactId>
- <version>4.0.63</version>
- </dependency>
- <!-- https://search.maven.org/artifact/com.github.f4b6a3/ulid-creator -->
- <dependency>
- <groupId>com.github.f4b6a3</groupId>
- <artifactId>ulid-creator</artifactId>
- <version>5.2.3</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <version>${spring.boot.version}</version>
- <scope>test</scope>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.giantan.mds</groupId>-->
- <!-- <artifactId>gtbook</artifactId>-->
- <!-- <version>1.0.0</version>-->
- <!-- <scope>compile</scope>-->
- <!-- </dependency>-->
- </dependencies>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-bom</artifactId>
- <version>${spring-ai.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <compilerArgs>
- <arg>-parameters</arg> <!-- ✅ 开启参数名保留 -->
- </compilerArgs>
- <annotationProcessorPaths>
- <path>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.38</version>
- </path>
- </annotationProcessorPaths>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <excludes>
- <exclude>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <!-- <version>1.18.38</version>-->
- </exclude>
- </excludes>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal> <!-- 关键 -->
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|