From ef6f68e19322603cf2c249400183d2b76cb8be8e Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Thu, 28 Sep 2023 13:46:35 +0200 Subject: [PATCH] doc references to jdk 8 --- docs/src/main/paradox/buildtools/gradle.md | 4 ---- docs/src/main/paradox/buildtools/maven.md | 4 ---- docs/src/main/paradox/buildtools/sbt.md | 4 ---- 3 files changed, 12 deletions(-) diff --git a/docs/src/main/paradox/buildtools/gradle.md b/docs/src/main/paradox/buildtools/gradle.md index 5274fd512..b81a8c55d 100644 --- a/docs/src/main/paradox/buildtools/gradle.md +++ b/docs/src/main/paradox/buildtools/gradle.md @@ -72,10 +72,6 @@ explicit by duplicating the proto definitions in your project. This is supported by `protobuf-gradle-plugin` and explained [here](https://github.com/google/protobuf-gradle-plugin#protos-in-dependencies). -## JDK 8 support - -If you want to use TLS-based negotiation on JDK 8, Akka gRPC requires JDK 8 update 252 or later. JVM support for ALPN has been backported to JDK 8u252 which is now widely available. Support for using the Jetty ALPN agent has been [dropped in Akka HTTP 10.2.0](https://doc.akka.io/docs/akka-http/current/migration-guide/migration-guide-10.2.x.html#http-2-support-requires-jdk-8-update-252-or-later), and therefore is not supported by Akka gRPC. - ## Starting your Akka gRPC server from gradle Build script needs a custom task diff --git a/docs/src/main/paradox/buildtools/maven.md b/docs/src/main/paradox/buildtools/maven.md index 1634fc3b8..15121a23c 100644 --- a/docs/src/main/paradox/buildtools/maven.md +++ b/docs/src/main/paradox/buildtools/maven.md @@ -91,10 +91,6 @@ Finally, the `target/proto` directory has to be introduced to the `akka-grpc-mav Java : @@snip[unpack protos](/plugin-tester-java/pom.xml) { #all-proto-paths } -## JDK 8 support - -If you want to use TLS-based negotiation on JDK 8, Akka gRPC requires JDK 8 update 252 or later. JVM support for ALPN has been backported to JDK 8u252 which is now widely available. Support for using the Jetty ALPN agent has been [dropped in Akka HTTP 10.2.0](https://doc.akka.io/docs/akka-http/current/migration-guide/migration-guide-10.2.x.html#http-2-support-requires-jdk-8-update-252-or-later), and therefore is not supported by Akka gRPC. - ## Starting your Akka gRPC server from Maven You can start your gRPC application as usual with: diff --git a/docs/src/main/paradox/buildtools/sbt.md b/docs/src/main/paradox/buildtools/sbt.md index 5c5a218c2..e448f6d8b 100644 --- a/docs/src/main/paradox/buildtools/sbt.md +++ b/docs/src/main/paradox/buildtools/sbt.md @@ -119,10 +119,6 @@ as an external protobuf source, add it like: libraryDependencies += "com.example" %% "my-grpc-service" % "1.0.0" % "protobuf" ``` -## JDK 8 support - -If you want to use TLS-based negotiation on JDK 8, Akka gRPC requires JDK 8 update 252 or later. JVM support for ALPN has been backported to JDK 8u252 which is now widely available. Support for using the Jetty ALPN agent has been [dropped in Akka HTTP 10.2.0](https://doc.akka.io/docs/akka-http/current/migration-guide/migration-guide-10.2.x.html#http-2-support-requires-jdk-8-update-252-or-later), and therefore is not supported by Akka gRPC. - ## Starting your Akka gRPC server from sbt You can start your gRPC application as usual with: