Skip to content

Commit

Permalink
迭代: 1.5.0.RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouhailin committed Mar 6, 2021
1 parent 8f918ff commit 2833685
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
2 changes: 1 addition & 1 deletion freeswitch-esl-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>freeswitch-esl-all</artifactId>
<groupId>link.thingscloud</groupId>
<version>1.5.0.SNAPSHOT</version>
<version>1.5.0.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
8 changes: 6 additions & 2 deletions freeswitch-esl-spring-boot-starter-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>freeswitch-esl-all</artifactId>
<groupId>link.thingscloud</groupId>
<version>1.5.0.SNAPSHOT</version>
<version>1.5.0.RELEASE</version>
</parent>

<artifactId>freeswitch-esl-spring-boot-starter-example</artifactId>
Expand All @@ -40,7 +40,11 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>link.thingscloud</groupId>
<artifactId>spring-boot-common-aop</artifactId>
<version>1.0.0-RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</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 @@ -22,7 +22,7 @@
<parent>
<artifactId>freeswitch-esl-all</artifactId>
<groupId>link.thingscloud</groupId>
<version>1.5.0.SNAPSHOT</version>
<version>1.5.0.RELEASE</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 @@ -22,7 +22,7 @@
<parent>
<artifactId>freeswitch-esl-all</artifactId>
<groupId>link.thingscloud</groupId>
<version>1.5.0.SNAPSHOT</version>
<version>1.5.0.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public static void isTrue(final boolean expression, final String message, final
* @param collection a T object.
* @param message a {@link java.lang.String} object.
* @param values a {@link java.lang.Object} object.
* @param <T> T
* @return a T object.
*/
public static <T extends Collection<?>> T notEmpty(final T collection, final String message, final Object... values) {
Expand Down
15 changes: 12 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<groupId>link.thingscloud</groupId>
<artifactId>freeswitch-esl-all</artifactId>
<packaging>pom</packaging>
<version>1.5.0.SNAPSHOT</version>
<version>1.5.0.RELEASE</version>

<name>freeswitch-esl-all-${project.version}</name>
<description>freeswitch event socket library on netty 4.1</description>
Expand All @@ -42,6 +42,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<netty.version>4.1.50.Final</netty.version>
<spring-boot.version>2.3.0.RELEASE</spring-boot.version>

<java.version>1.8</java.version>
Expand All @@ -55,7 +56,7 @@
<url>https://github.com/zhouhailin/freeswitch-esl-all</url>
<connection>scm:git:https://github.com/zhouhailin/freeswitch-esl-all.git</connection>
<developerConnection>scm:git:https://github.com/zhouhailin/freeswitch-esl-all.git</developerConnection>
<tag>1.4.0.SNAPSHOT</tag>
<tag>1.5.0.RELEASE</tag>
</scm>
<licenses>
<license>
Expand Down Expand Up @@ -120,8 +121,16 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.50.Final</version>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<version>${netty.version}</version>
<classifier>linux-x86_64</classifier>
<scope>provided</scope>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 2833685

Please sign in to comment.