-
Notifications
You must be signed in to change notification settings - Fork 81
Open
Description
Please use this issue for discussion.
The SignalR java client which is currently in preview, was previously under the package name com.microsoft.aspnet.signalr
. This was the case for the first and second previews of the Java client. Starting in preview 3 the package name will change to com.microsoft.signalr
. This means that our groupid through maven central will change and that consuming the package through maven or gradle will be slightly different.
Here's what bringing in the Java client after preview 3 releases without the actual build numbers should look similar to
<dependency>
<groupId>com.microsoft.signalr</groupId>
<artifactId>signalr</artifactId>
<version>PREVIEW 3 VERSION NUMBER</version>
</dependency>
implementation 'com.microsoft.signalr:signalr:PREVIEW 3 VERSION NUMBER'