Skip to content

Commit

Permalink
[SNAPSHOT] : 2.3.0-SNAPSHOT and cdr modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouhailin committed Dec 19, 2024
1 parent 990b25a commit 95a149e
Show file tree
Hide file tree
Showing 9 changed files with 151 additions and 8 deletions.
23 changes: 23 additions & 0 deletions freeswitch-cdr-example/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?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>link.thingscloud</groupId>
<artifactId>freeswitch-externals</artifactId>
<version>2.3.0-SNAPSHOT</version>
</parent>

<artifactId>freeswitch-cdr-example</artifactId>
<name>freeswitch-cdr-example-${project.version}</name>
<description>Example project for Freeswitch Cdr</description>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>freeswitch-cdr</artifactId>
</dependency>
</dependencies>

</project>
40 changes: 40 additions & 0 deletions freeswitch-cdr-spring-boot-starter-example/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?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>link.thingscloud</groupId>
<artifactId>freeswitch-externals</artifactId>
<version>2.3.0-SNAPSHOT</version>
</parent>

<artifactId>freeswitch-cdr-spring-boot-starter-example</artifactId>
<name>freeswitch-cdr-spring-boot-starter-example-${project.version}</name>

<description>Example project for Freeswitch Cdr Spring Boot Starter</description>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>freeswitch-cdr-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</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>
</dependencies>

</project>
32 changes: 32 additions & 0 deletions freeswitch-cdr-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?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>link.thingscloud</groupId>
<artifactId>freeswitch-externals</artifactId>
<version>2.3.0-SNAPSHOT</version>
</parent>

<artifactId>freeswitch-cdr-spring-boot-starter</artifactId>
<name>freeswitch-cdr-spring-boot-starter-${project.version}</name>
<description>Freeswitch Cdr Spring Boot Starter</description>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>freeswitch-cdr</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
</dependencies>

</project>
36 changes: 36 additions & 0 deletions freeswitch-cdr/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?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>link.thingscloud</groupId>
<artifactId>freeswitch-externals</artifactId>
<version>2.3.0-SNAPSHOT</version>
</parent>

<artifactId>freeswitch-cdr</artifactId>
<name>freeswitch-cdr-${project.version}</name>
<description>freeswitch Call Detail Record</description>

<dependencies>
<dependency>
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
</dependencies>

</project>
2 changes: 1 addition & 1 deletion freeswitch-esl-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>link.thingscloud</groupId>
<artifactId>freeswitch-externals</artifactId>
<version>2.2.0</version>
<version>2.3.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion freeswitch-esl-spring-boot-starter-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>link.thingscloud</groupId>
<artifactId>freeswitch-externals</artifactId>
<version>2.2.0</version>
<version>2.3.0-SNAPSHOT</version>
</parent>

<artifactId>freeswitch-esl-spring-boot-starter-example</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion freeswitch-esl-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>link.thingscloud</groupId>
<artifactId>freeswitch-externals</artifactId>
<version>2.2.0</version>
<version>2.3.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion freeswitch-esl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>link.thingscloud</groupId>
<artifactId>freeswitch-externals</artifactId>
<version>2.2.0</version>
<version>2.3.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
20 changes: 16 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<groupId>link.thingscloud</groupId>
<artifactId>freeswitch-externals</artifactId>
<packaging>pom</packaging>
<version>2.2.0</version>
<version>2.3.0-SNAPSHOT</version>

<name>freeswitch-esl-all-${project.version}</name>
<description>freeswitch event socket library on netty 4.1</description>
Expand All @@ -34,6 +34,10 @@
<module>freeswitch-esl-example</module>
<module>freeswitch-esl-spring-boot-starter</module>
<module>freeswitch-esl-spring-boot-starter-example</module>
<module>freeswitch-cdr</module>
<module>freeswitch-cdr-example</module>
<module>freeswitch-cdr-spring-boot-starter</module>
<module>freeswitch-cdr-spring-boot-starter-example</module>
</modules>

<properties>
Expand Down Expand Up @@ -87,20 +91,28 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>freeswitch-example</artifactId>
<artifactId>freeswitch-esl-spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>freeswitch-esl-spring-boot-starter</artifactId>
<artifactId>freeswitch-cdr</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>freeswitch-esl-spring-boot-starter-example</artifactId>
<artifactId>freeswitch-cdr-spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
<dependency>
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>2.1.4</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit 95a149e

Please sign in to comment.