You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
3.6 KiB
132 lines
3.6 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
|
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.cloud</groupId> |
|
<artifactId>kicc-platform-biz</artifactId> |
|
<version>1.0.0</version> |
|
</parent> |
|
|
|
<artifactId>kicc-system-biz</artifactId> |
|
<packaging>jar</packaging> |
|
|
|
<description>kicc 系统模块</description> |
|
|
|
<dependencies> |
|
<!--oss文件管理--> |
|
<dependency> |
|
<groupId>com.pig4cloud.plugin</groupId> |
|
<artifactId>oss-spring-boot-starter</artifactId> |
|
</dependency> |
|
<!--common api模块--> |
|
<dependency> |
|
<groupId>com.cloud</groupId> |
|
<artifactId>kicc-common-api</artifactId> |
|
</dependency> |
|
<!--system api模块--> |
|
<dependency> |
|
<groupId>com.cloud</groupId> |
|
<artifactId>kicc-system-api</artifactId> |
|
</dependency> |
|
<!--安全模块--> |
|
<dependency> |
|
<groupId>com.cloud</groupId> |
|
<artifactId>kicc-common-security</artifactId> |
|
</dependency> |
|
<!--日志处理--> |
|
<dependency> |
|
<groupId>com.cloud</groupId> |
|
<artifactId>kicc-common-log</artifactId> |
|
</dependency> |
|
<!--接口文档--> |
|
<dependency> |
|
<groupId>com.cloud</groupId> |
|
<artifactId>kicc-common-swagger</artifactId> |
|
</dependency> |
|
<!--注册中心客户端--> |
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
|
</dependency> |
|
<!--配置中心客户端--> |
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> |
|
</dependency> |
|
<!--阿里云短信下发--> |
|
<dependency> |
|
<groupId>cn.javaer.aliyun</groupId> |
|
<artifactId>aliyun-spring-boot-starter-sms</artifactId> |
|
</dependency> |
|
<!--undertow容器--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-undertow</artifactId> |
|
</dependency> |
|
<!--模拟测试--> |
|
<dependency> |
|
<groupId>com.cloud</groupId> |
|
<artifactId>kicc-common-mock</artifactId> |
|
</dependency> |
|
<!--多数据源--> |
|
<dependency> |
|
<groupId>com.cloud</groupId> |
|
<artifactId>kicc-common-datasource</artifactId> |
|
</dependency> |
|
<!--ChatGpt AI--> |
|
<dependency> |
|
<groupId>com.theokanning.openai-gpt3-java</groupId> |
|
<artifactId>api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.squareup.retrofit2</groupId> |
|
<artifactId>converter-jackson</artifactId> |
|
<version>${retrofit2.converter-jackson.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.theokanning.openai-gpt3-java</groupId> |
|
<artifactId>client</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.theokanning.openai-gpt3-java</groupId> |
|
<artifactId>service</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.bytedeco</groupId> |
|
<artifactId>javacv-platform</artifactId> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>io.fabric8</groupId> |
|
<artifactId>docker-maven-plugin</artifactId> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<filtering>true</filtering> |
|
<excludes> |
|
<exclude>**/*.xlsx</exclude> |
|
<exclude>**/*.xls</exclude> |
|
</excludes> |
|
</resource> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<filtering>false</filtering> |
|
<includes> |
|
<include>**/*.xlsx</include> |
|
<include>**/*.xls</include> |
|
</includes> |
|
</resource> |
|
</resources> |
|
</build> |
|
|
|
</project>
|
|
|