From acc0176be2071e456671211663708b983b1988c2 Mon Sep 17 00:00:00 2001 From: Brennan Date: Thu, 12 Jan 2023 16:09:46 -0800 Subject: [PATCH] Update Java package version reference (#28083) Closes https://github.com/dotnet/aspnetcore/issues/45315 --- aspnetcore/signalr/java-client.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/signalr/java-client.md b/aspnetcore/signalr/java-client.md index d0330160cf..eb233ed149 100644 --- a/aspnetcore/signalr/java-client.md +++ b/aspnetcore/signalr/java-client.md @@ -20,12 +20,12 @@ The sample Java console app referenced in this article uses the SignalR Java cli ## Install the SignalR Java client package -The *signalr-1.0.0* JAR file allows clients to connect to SignalR hubs. To find the latest JAR file version number, see the [Maven search results](https://search.maven.org/search?q=g:com.microsoft.signalr%20AND%20a:signalr). +The *signalr-7.0.0* JAR file allows clients to connect to SignalR hubs. To find the latest JAR file version number, see the [Maven search results](https://search.maven.org/search?q=g:com.microsoft.signalr%20AND%20a:signalr). If using Gradle, add the following line to the `dependencies` section of your *build.gradle* file: ```gradle -implementation 'com.microsoft.signalr:signalr:1.0.0' +implementation 'com.microsoft.signalr:signalr:7.0.0' ``` If using Maven, add the following lines inside the `` element of your `pom.xml` file: