docs: Suggest using Fork19 of tcnative

Fork17 fails with:
java.lang.NoClassDefFoundError:
org/apache/tomcat/jni/CertificateRequestedCallback

I've also seen issues of it failing silently, other than connection
hanging (which I've not dug into). Since we're using Fork19 ourselves,
we should have our users do the same.
This commit is contained in:
Eric Anderson 2016-09-28 17:14:18 -07:00
parent b1d72e5c3e
commit 60715a5674
1 changed files with 4 additions and 4 deletions

View File

@ -62,7 +62,7 @@ In Maven, you can use the [os-maven-plugin](https://github.com/trustin/os-maven-
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>1.1.33.Fork17</version>
<version>1.1.33.Fork19</version>
</dependency>
</dependencies>
</project>
@ -80,7 +80,7 @@ buildscript {
}
dependencies {
compile 'io.netty:netty-tcnative-boringssl-static:1.1.33.Fork17'
compile 'io.netty:netty-tcnative-boringssl-static:1.1.33.Fork19'
}
```
@ -115,7 +115,7 @@ In Maven, you can use the [os-maven-plugin](https://github.com/trustin/os-maven-
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative</artifactId>
<version>1.1.33.Fork14</version>
<version>1.1.33.Fork19</version>
<classifier>${tcnative.classifier}</classifier>
</dependency>
</dependencies>
@ -183,7 +183,7 @@ if (osdetector.os == "linux" && osdetector.release.isLike("fedora")) {
}
dependencies {
compile 'io.netty:netty-tcnative:1.1.33.Fork14:' + tcnative_classifier
compile 'io.netty:netty-tcnative:1.1.33.Fork19:' + tcnative_classifier
}
```