@@ -45,15 +45,31 @@ on. Then you can scan for devices, iterate over them and send commands.
4545
4646### Snapshots
4747
48- Snapshot libraries from the buttplug4j repo are available via Maven from the following
49- repository: https://s01.oss.sonatype.org/content/repositories/snapshots
50- Releases will be available from maven central.
48+ Snapshot libraries from the buttplug4j repo are available via Maven from the Central Portal Snapshots
49+ repository: https://central.sonatype.com/repository/maven-snapshots
5150
51+ Releases will be available from Maven Central.
52+
53+ For Gradle:
54+ ``` groovy
55+ repositories {
56+ maven {
57+ name = 'Central Portal Snapshots'
58+ url = 'https://central.sonatype.com/repository/maven-snapshots/'
59+ }
60+ }
61+ dependencies {
62+ implementation 'io.github.blackspherefollower:buttplug4j.connectors.jetty.websocket.client:3.1.+'
63+ }
64+ ```
65+
66+ For Maven:
5267``` xml
5368<repositories >
5469 <repository >
55- <id >OSSRH</id >
56- <url >https://s01.oss.sonatype.org/content/repositories/snapshots</url >
70+ <name >Central Portal Snapshots</name >
71+ <id >central-portal-snapshots</id >
72+ <url >https://central.sonatype.com/repository/maven-snapshots/</url >
5773 <snapshots >
5874 <enabled >true</enabled >
5975 </snapshots >
@@ -63,7 +79,7 @@ Releases will be available from maven central.
6379 <dependency >
6480 <groupId >io.github.blackspherefollower</groupId >
6581 <artifactId >buttplug4j.connectors.jetty.websocket.client</artifactId >
66- <version >[3.0 -SNAPSHOT,)</version >
82+ <version >[3.1 -SNAPSHOT,)</version >
6783 </dependency >
6884</dependencies >
6985```
@@ -79,7 +95,7 @@ write code for!
7995
8096Buttplug for Java is BSD licensed.
8197
82- Copyright (c) 2016-2024 , BlackSphereFollower
98+ Copyright (c) 2016-2025 , BlackSphereFollower
8399 All rights reserved.
84100
85101 Redistribution and use in source and binary forms, with or without
0 commit comments