-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
99eec7e
commit f718d5a
Showing
3 changed files
with
379 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,362 @@ | ||
<?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.bytedesk</groupId> | ||
<artifactId>im</artifactId> | ||
<version>${revision}</version> | ||
</parent> | ||
|
||
<artifactId>channels</artifactId> | ||
<packaging>pom</packaging> | ||
<version>${revision}</version> | ||
|
||
<modules> | ||
<!-- <module>amazon</module> --> | ||
<!-- <module>android</module> --> | ||
<!-- <module>apple</module> --> | ||
<!-- <module>baidu</module> --> | ||
<module>difyai</module> | ||
<module>dingtalk</module> | ||
<!-- <module>douyin</module> --> | ||
<!-- <module>ebay</module> --> | ||
<!-- <module>email</module> --> | ||
<!-- <module>facebook</module> --> | ||
<!-- <module>feishu</module> --> | ||
<!-- <module>flutter</module> --> | ||
<!-- <module>instagram</module> --> | ||
<!-- <module>ios</module> --> | ||
<!-- <module>jd</module> --> | ||
<!-- <module>kuaishou</module> --> | ||
<!-- <module>lazada</module> --> | ||
<!-- <module>line</module> --> | ||
<!-- <module>messenger</module> --> | ||
<!-- <module>openai</module> --> | ||
<!-- <module>pdd</module> --> | ||
<!-- <module>qianniu</module> --> | ||
<!-- <module>shopee</module> --> | ||
<!-- <module>shopify</module> --> | ||
<!-- <module>taobao</module> --> | ||
<!-- <module>telegram</module> --> | ||
<!-- <module>tiktok</module> --> | ||
<!-- <module>twilio</module> --> | ||
<!-- <module>uniapp</module> --> | ||
<!-- <module>viber</module> --> | ||
<!-- <module>walmart</module> --> | ||
<!-- <module>wechat</module> --> | ||
<!-- <module>weibo</module> --> | ||
<!-- <module>whatsapp</module> --> | ||
<!-- <module>x</module> --> | ||
<!-- <module>xiaohongshu</module> --> | ||
</modules> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-tomcat</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-jetty</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
<!--webflux--> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-webflux</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-freemarker</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-security</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- https://docs.spring.io/spring-data/jpa/reference/jpa/query-methods.html --> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-data-jpa</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-data-redis</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-validation</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-cache</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-actuator</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-aop</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- scheduled task - 定时任务--> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-quartz</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- | ||
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor --> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-configuration-processor</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
|
||
<!-- ///////////////////////////////////////////////////////////////////////////// --> | ||
|
||
<dependency> | ||
<groupId>com.bytedesk</groupId> | ||
<artifactId>bytedesk-module-core</artifactId> | ||
<version>${revision}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.bytedesk</groupId> | ||
<artifactId>bytedesk-module-kbase</artifactId> | ||
<version>${revision}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.bytedesk</groupId> | ||
<artifactId>bytedesk-module-ai</artifactId> | ||
<version>${revision}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.bytedesk</groupId> | ||
<artifactId>bytedesk-module-service</artifactId> | ||
<version>${revision}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.bytedesk</groupId> | ||
<artifactId>bytedesk-module-team</artifactId> | ||
<version>${revision}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- <dependency> | ||
<groupId>com.bytedesk</groupId> | ||
<artifactId>bytedesk-module-social</artifactId> | ||
<version>${revision}</version> | ||
<scope>provided</scope> | ||
</dependency> --> | ||
|
||
<!-- | ||
//////////////////////////////////付费模块-如果报错找不到,直接删除依赖就好,不影响正常使用/////////////////////////////////////////// --> | ||
|
||
<!-- core - admin --> | ||
<dependency> | ||
<groupId>com.bytedesk</groupId> | ||
<artifactId>bytedesk-vip-core</artifactId> | ||
<version>${revision}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- kbase - 知识库 --> | ||
<dependency> | ||
<groupId>com.bytedesk</groupId> | ||
<artifactId>bytedesk-vip-kbase</artifactId> | ||
<version>${revision}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- service - 客服付费模块 --> | ||
<dependency> | ||
<groupId>com.bytedesk</groupId> | ||
<artifactId>bytedesk-vip-service</artifactId> | ||
<version>${revision}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- flow - 流程引擎 --> | ||
<!-- <dependency> | ||
<groupId>com.bytedesk</groupId> | ||
<artifactId>bytedesk-vip-flowbot</artifactId> | ||
<version>${revision}</version> | ||
</dependency> --> | ||
|
||
<!-- team - 团队付费模块 --> | ||
<!-- <dependency> | ||
<groupId>com.bytedesk</groupId> | ||
<artifactId>bytedesk-vip-team</artifactId> | ||
<version>${revision}</version> | ||
</dependency> --> | ||
|
||
<!-- ticket - 工单 --> | ||
<!-- <dependency> | ||
<groupId>com.bytedesk</groupId> | ||
<artifactId>bytedesk-vip-ticket</artifactId> | ||
<version>${revision}</version> | ||
</dependency> --> | ||
|
||
<!-- ///////////////////////////////////////////////////////////////////////////// --> | ||
|
||
<!-- querydsl crud增强--> | ||
<!-- http://querydsl.com/ --> | ||
<!-- https://github.com/querydsl/querydsl/tree/master/querydsl-jpa --> | ||
<!-- https://mvnrepository.com/artifact/com.querydsl/querydsl-jpa --> | ||
<!-- <dependency> | ||
<groupId>com.querydsl</groupId> | ||
<artifactId>querydsl-jpa</artifactId> | ||
<classifier>jakarta</classifier> | ||
<version>${querydsl.version}</version> | ||
</dependency> --> | ||
|
||
<!-- --> | ||
<!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 --> | ||
<!-- https://alibaba.github.io/fastjson2/ --> | ||
<!-- https://github.com/alibaba/fastjson2/blob/main/docs/spring_support_cn.md --> | ||
<dependency> | ||
<groupId>com.alibaba.fastjson2</groupId> | ||
<artifactId>fastjson2</artifactId> | ||
<version>2.0.53</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-starter-webmvc-ui --> | ||
<dependency> | ||
<groupId>org.springdoc</groupId> | ||
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> | ||
<version>2.6.0</version> | ||
<!-- 添加provided会报错 --> | ||
<!-- <scope>provided</scope> --> | ||
</dependency> | ||
|
||
<!-- FIXME: not working? https://docs.spring.io/spring-data/rest/reference/tools.html --> | ||
<!-- <dependency> | ||
<groupId>org.springframework.data</groupId> | ||
<artifactId>spring-data-rest-hal-explorer</artifactId> | ||
<scope>provided</scope> | ||
</dependency> --> | ||
|
||
<!-- https://mvnrepository.com/artifact/org.modelmapper/modelmapper --> | ||
<dependency> | ||
<groupId>org.modelmapper</groupId> | ||
<artifactId>modelmapper</artifactId> | ||
<version>3.2.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- 一级缓存 --> | ||
<!-- https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine --> | ||
<!-- <version>3.1.8</version> --> | ||
<dependency> | ||
<groupId>com.github.ben-manes.caffeine</groupId> | ||
<artifactId>caffeine</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- https://mvnrepository.com/artifact/com.google.guava/guava --> | ||
<!-- https://wizardforcel.gitbooks.io/guava-tutorial/content/1.html --> | ||
<!-- https://github.com/google/guava/wiki --> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>33.3.1-jre</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> | ||
<!-- <dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-lang3</artifactId> | ||
<version>3.14.0</version> | ||
<scope>provided</scope> | ||
</dependency> --> | ||
|
||
<!-- 内存队列 https://search.maven.org/artifact/com.lmax/disruptor/4.0.0/jar --> | ||
<dependency> | ||
<groupId>com.lmax</groupId> | ||
<artifactId>disruptor</artifactId> | ||
<version>4.0.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- https://github.com/redis/jedis?tab=readme-ov-file --> | ||
<!-- https://mvnrepository.com/artifact/redis.clients/jedis --> | ||
<dependency> | ||
<groupId>redis.clients</groupId> | ||
<artifactId>jedis</artifactId> | ||
<version>5.2.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- --> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-devtools</artifactId> | ||
<scope>runtime</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<scope>provided</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/org.springframework.security/spring-security-test --> | ||
<dependency> | ||
<groupId>org.springframework.security</groupId> | ||
<artifactId>spring-security-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
|
||
</plugins> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!-- | ||
* @Author: jackning 270580156@qq.com | ||
* @Date: 2024-04-24 22:18:53 | ||
* @LastEditors: jackning 270580156@qq.com | ||
* @LastEditTime: 2024-04-25 10:43:29 | ||
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesk | ||
* Please be aware of the BSL license restrictions before installing Bytedesk IM – | ||
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license. | ||
* Business Source License 1.1: https://github.com/Bytedesk/bytedesk/blob/main/LICENSE | ||
* contact: 270580156@qq.com | ||
* 联系:270580156@qq.com | ||
* Copyright (c) 2024 by bytedesk.com, All Rights Reserved. | ||
--> | ||
# 整合-集成-对接第三方API | ||
|
||
- [zulip-channels](https://chat.zulip.org/channels/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters