mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2024-12-29 03:13:25 +08:00
103 lines
No EOL
3.1 KiB
XML
103 lines
No EOL
3.1 KiB
XML
<?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">
|
|
<parent>
|
|
<artifactId>skyeye-ai</artifactId>
|
|
<groupId>com.skyeye</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>ai-pro</artifactId>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<!-- db -->
|
|
<c3p0.version>0.9.5.2</c3p0.version>
|
|
<druid.version>1.0.25</druid.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 引入common的依赖 -->
|
|
<dependency>
|
|
<groupId>com.skyeye</groupId>
|
|
<artifactId>ai-common</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-dbcp2</artifactId>
|
|
<version>2.1.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
<artifactId>json-path</artifactId>
|
|
<version>2.8.0</version>
|
|
</dependency>
|
|
|
|
<!-- db -->
|
|
<dependency>
|
|
<groupId>com.mchange</groupId>
|
|
<artifactId>c3p0</artifactId>
|
|
<version>${c3p0.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid</artifactId>
|
|
<version>${druid.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.baidubce</groupId>
|
|
<artifactId>qianfan</artifactId>
|
|
<version>0.1.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.github.briqt</groupId>
|
|
<artifactId>xunfei-spark4j</artifactId>
|
|
<version>1.2.0</version>
|
|
</dependency>
|
|
|
|
<!-- 通义千问-->
|
|
|
|
<!--导入通义千问 DK -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dashscope-sdk-java</artifactId>
|
|
<version>2.14.4</version>
|
|
</dependency>
|
|
|
|
<!-- 智普ai-->
|
|
<!--https://open.bigmodel.cn/dev/api#sdk_install-->
|
|
<dependency>
|
|
<groupId>cn.bigmodel.openapi</groupId>
|
|
<artifactId>oapi-java-sdk</artifactId>
|
|
<version>release-V4-2.0.0</version>
|
|
</dependency>
|
|
|
|
<!-- SSE-->
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>4.9.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp-sse</artifactId>
|
|
<version>4.9.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
|
<version>3.3.4</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |