Files
weiyu/modules/call/pom.xml

97 lines
3.0 KiB
XML
Raw Normal View History

2025-08-08 18:09:17 +08:00
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.bytedesk</groupId>
<artifactId>modules</artifactId>
<version>${revision}</version>
</parent>
<artifactId>bytedesk-module-call</artifactId>
<version>${revision}</version>
<name>bytedesk-module-call</name>
<description>https://ai.bytedesk.com</description>
<properties>
2025-08-22 07:58:34 +08:00
<freeswitch.esl.version>0.9.2</freeswitch.esl.version>
2025-08-08 18:09:17 +08:00
</properties>
<dependencies>
2025-08-09 10:56:07 +08:00
<!--
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-websocket -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
<scope>provided</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.springframework.security/spring-security-messaging -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-messaging</artifactId>
<scope>provided</scope>
</dependency>
2025-08-08 18:09:17 +08:00
<!-- ///////////////////////////////////////////////////////////////////////////// -->
<dependency>
<groupId>com.bytedesk</groupId>
<artifactId>bytedesk-module-core</artifactId>
<version>${revision}</version>
<scope>provided</scope>
</dependency>
<!-- ///////////////////////////////////////////////////////////////////////////// -->
2025-08-09 10:56:07 +08:00
<!-- 太久未更新 -->
<!-- FreeSwitch ESL (Event Socket Library) Client -->
<!-- https://mvnrepository.com/artifact/org.freeswitch.esl.client/org.freeswitch.esl.client -->
<!-- 内存泄露替代 https://github.com/esl-client/esl-client -->
2025-10-20 12:16:35 +08:00
<!-- <dependency>
2025-08-09 10:56:07 +08:00
<groupId>org.freeswitch.esl.client</groupId>
<artifactId>org.freeswitch.esl.client</artifactId>
<version>${freeswitch.esl.version}</version>
2025-10-20 12:16:35 +08:00
</dependency> -->
2025-08-09 10:56:07 +08:00
<!-- https://github.com/zhouhailin/freeswitch-externals -->
<!-- https://zhouhailin.github.io/freeswitch-externals/ -->
<!-- https://mvnrepository.com/artifact/link.thingscloud/freeswitch-esl -->
2025-10-05 09:12:43 +08:00
<!-- <dependency>
2025-08-09 10:56:07 +08:00
<groupId>link.thingscloud</groupId>
<artifactId>freeswitch-esl</artifactId>
<version>2.2.0</version>
2025-10-05 09:12:43 +08:00
</dependency> -->
2025-08-09 10:56:07 +08:00
<!-- RTP媒体处理 -->
<!-- https://github.com/RestComm/jain-sip -->
<!-- https://mvnrepository.com/artifact/javax.sip/jain-sip-ri -->
<dependency>
<groupId>javax.sip</groupId>
<artifactId>jain-sip-ri</artifactId>
<version>1.3.0-91</version>
</dependency>
2025-10-14 15:42:05 +08:00
<!-- https://mvnrepository.com/artifact/org.apache.mina/mina-core -->
<dependency>
<groupId>org.apache.mina</groupId>
<artifactId>mina-core</artifactId>
<version>2.2.4</version>
</dependency>
2025-08-08 18:09:17 +08:00
</dependencies>
<build>
<plugins>
<!-- <plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin> -->
</plugins>
</build>
</project>