1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?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.ctix</groupId>
- <artifactId>ctix</artifactId>
- <version>3.9.0</version>
- </parent>
- <artifactId>ctix-freeswitch</artifactId>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <!-- 核心模块-->
- <dependency>
- <groupId>com.ctix</groupId>
- <artifactId>ctix-framework</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.freeswitch.esl.client</groupId>
- <artifactId>org.freeswitch.esl.client</artifactId>
- <version>0.9.2</version>
- </dependency>
- </dependencies>
- </project>
|