Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 14 additions & 10 deletions modules/transport-netty4/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ compileTestJava.options.compilerArgs << "-Xlint:-cast,-deprecation,-rawtypes,-tr

dependencies {
// network stack
compile "io.netty:netty-buffer:4.1.4.Final"
compile "io.netty:netty-codec:4.1.4.Final"
compile "io.netty:netty-codec-http:4.1.4.Final"
compile "io.netty:netty-common:4.1.4.Final"
compile "io.netty:netty-handler:4.1.4.Final"
compile "io.netty:netty-resolver:4.1.4.Final"
compile "io.netty:netty-transport:4.1.4.Final"
compile "io.netty:netty-buffer:4.1.5.Final"
compile "io.netty:netty-codec:4.1.5.Final"
compile "io.netty:netty-codec-http:4.1.5.Final"
compile "io.netty:netty-common:4.1.5.Final"
compile "io.netty:netty-handler:4.1.5.Final"
compile "io.netty:netty-resolver:4.1.5.Final"
compile "io.netty:netty-transport:4.1.5.Final"
}

integTest {
Expand Down Expand Up @@ -114,9 +114,9 @@ thirdPartyAudit.excludes = [
'com.ning.compress.lzf.LZFEncoder',
'com.ning.compress.lzf.util.ChunkDecoderFactory',
'com.ning.compress.lzf.util.ChunkEncoderFactory',
'javassist/ClassClassPath',
'javassist/ClassPath',
'javassist/ClassPool',
'javassist.ClassClassPath',
'javassist.ClassPath',
'javassist.ClassPool',
'javassist.CtClass',
'javassist.CtMethod',
'lzma.sdk.lzma.Encoder',
Expand All @@ -127,7 +127,9 @@ thirdPartyAudit.excludes = [
'net.jpountz.xxhash.XXHashFactory',
'org.apache.logging.log4j.LogManager',
'org.apache.logging.log4j.Logger',
'org.apache.tomcat.Apr',
'org.apache.tomcat.jni.CertificateRequestedCallback',
'org.apache.tomcat.jni.CertificateRequestedCallback$KeyMaterial',
'org.apache.tomcat.jni.CertificateVerifier',
'org.apache.tomcat.jni.SessionTicketKey',
'org.eclipse.jetty.alpn.ALPN$ClientProvider',
Expand All @@ -136,6 +138,8 @@ thirdPartyAudit.excludes = [

'io.netty.handler.ssl.util.OpenJdkSelfSignedCertGenerator',
'io.netty.util.internal.PlatformDependent0',
'io.netty.util.internal.PlatformDependent0$2',
'io.netty.util.internal.PlatformDependent0$3',
'io.netty.util.internal.UnsafeAtomicIntegerFieldUpdater',
'io.netty.util.internal.UnsafeAtomicLongFieldUpdater',
'io.netty.util.internal.UnsafeAtomicReferenceFieldUpdater',
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b5fb6bccda4d63d4a74c9faccdf32f77ab66abc1

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
66bbf9324fa36467d041083f89328e2a24ec4f67

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
087bda1b9ec7e3f75ca721fc87735cbedad2aa1a

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
607f8433d8782445e72abe34e43a7e57e86a5e6c

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6262900ee9487e62560030a136160df953b1cd6b

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5f367bedcdc185a727fda3296b9a18014cdc22c4

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
37126b370722ff9631ee13c91139aacec0a71d1d
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

grant codeBase "${codebase.netty-transport-4.1.4.Final.jar}" {
grant codeBase "${codebase.netty-transport-4.1.5.Final.jar}" {
// Netty NioEventLoop wants to change this, because of https://bugs.openjdk.java.net/browse/JDK-6427854
// the bug says it only happened rarely, and that its fixed, but apparently it still happens rarely!
permission java.util.PropertyPermission "sun.nio.ch.bugLevel", "write";
Expand Down