Skip to content

Commit

Permalink
Merge pull request esl-client#21 from tgbyte/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
mgodave authored Nov 14, 2017
2 parents c4bdcec + 1da01d6 commit 67fa4ec
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ repositories {
}

dependencies {
compile 'io.netty:netty-all:4.0.27.Final'
compile 'com.google.guava:guava:11.0'
compile 'org.slf4j:slf4j-api:1.6.1'
runtime 'ch.qos.logback:logback-classic:1.0.0'
compile 'io.netty:netty-all:4.1.17.Final'
compile 'com.google.guava:guava:23.4-jre'
compile 'org.slf4j:slf4j-api:1.7.25'
runtime 'ch.qos.logback:logback-classic:1.2.3'
testCompile 'junit:junit:4.8.1'
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import java.util.List;
import java.util.Map;

import static com.google.common.base.Objects.toStringHelper;
import static com.google.common.base.MoreObjects.toStringHelper;

/**
* FreeSWITCH Event Socket <strong>events</strong> are decoded into this data object.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import java.util.List;
import java.util.Map;

import static com.google.common.base.Objects.toStringHelper;
import static com.google.common.base.MoreObjects.toStringHelper;

/**
* Basic FreeSWITCH Event Socket messages from the server are decoded into this data object.
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/OutboundTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void onEslEvent(Context ctx,

}
});
outboundServer.start();
outboundServer.startAsync();

} catch (Throwable t) {
Throwables.propagate(t);
Expand Down

0 comments on commit 67fa4ec

Please sign in to comment.