Update Java package version reference (#28083)

Closes https://github.com/dotnet/aspnetcore/issues/45315
pull/28094/head
Brennan 2023-01-12 16:09:46 -08:00 committed by GitHub
parent b3f3f05aeb
commit acc0176be2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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 `<dependencies>` element of your `pom.xml` file: