diff --git a/docs/Getting-Started.md b/docs/Getting-Started.md
index 4326dbbd34..115742b741 100644
--- a/docs/Getting-Started.md
+++ b/docs/Getting-Started.md
@@ -8,28 +8,28 @@ Example for Maven:
io.reactivex.rxjava4
rxjava
- 4.0.0
+ x.y.z
```
and for Ivy:
```xml
-
+
```
and for SBT:
```scala
-libraryDependencies += "io.reactivex" %% "rxscala" % "0.26.5"
-
-libraryDependencies += "io.reactivex.rxjava4" % "rxjava" % "4.0.0"
+libraryDependencies += "io.reactivex.rxjava4" % "rxjava" % "x.y.z"
```
and for Gradle:
```groovy
-implementation 'io.reactivex.rxjava4:rxjava:4.0.0'
+implementation 'io.reactivex.rxjava4:rxjava:x.y.z'
```
+Replace `x.y.z` with a released version from Maven Central.
+
If you need to download the jars instead of using a build system, create a Maven `pom` file like this with the desired version:
```xml
@@ -38,17 +38,14 @@ If you need to download the jars instead of using a build system, create a Maven
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- io.reactivex.rxjava4
- rxjava
- 3.0.4
- RxJava
- Reactive Extensions for Java
- https://github.com/ReactiveX/RxJava
+ com.example
+ download-rxjava
+ 1.0.0
io.reactivex.rxjava4
rxjava
- 4.0.0
+ x.y.z
@@ -62,15 +59,15 @@ $ mvn -f download-rxjava-pom.xml dependency:copy-dependencies
That command downloads `rxjava-*.jar` and its dependencies into `./target/dependency/`.
-You need Java 6 or later.
+You need Java 26 or later.
### Snapshots
-Snapshots after May 1st, 2021 are available via https://oss.sonatype.org/content/repositories/snapshots/io/reactivex/rxjava4/rxjava/
+Snapshots after May 19th, 2025 are available via https://central.sonatype.com/repository/maven-snapshots/io/reactivex/rxjava4/rxjava/
```groovy
repositories {
- maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
+ maven { url 'https://central.sonatype.com/repository/maven-snapshots' }
}
dependencies {
@@ -78,7 +75,7 @@ dependencies {
}
```
-Javadoc snapshots are available at http://reactivex.io/RxJava/4.x/javadoc/snapshot
+Javadoc snapshots are available at https://reactivex.io/RxJava/4.x/javadoc/snapshot
## Building