Skip to content

Commit 4aa1c43

Browse files
committed
Re-enable snapshot full build, update README
1 parent c4163c9 commit 4aa1c43

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

.github/workflows/gradle_snapshot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Grant execute permission for push
3333
run: chmod +x push_javadoc.sh
3434
- name: Build and Snapshot branch
35-
run: ./gradlew -PreleaseMode=branch assemble --stacktrace --no-daemon
35+
run: ./gradlew -PreleaseMode=branch build --stacktrace --no-daemon
3636
- name: Upload Snapshot
3737
run: ./gradlew -PreleaseMode=branch javadocCleanup uploadArchives --no-daemon --no-parallel --stacktrace
3838
env:

README.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -565,15 +565,28 @@ and for Ivy:
565565

566566
### Snapshots
567567

568-
Snapshots are available via https://oss.jfrog.org/libs-snapshot/io/reactivex/rxjava3/rxjava/
568+
Snapshots after May 1st, 2021 are available via https://oss.sonatype.org/content/repositories/snapshots/io/reactivex/rxjava3/rxjava/
569+
570+
```groovy
571+
repositories {
572+
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
573+
}
574+
575+
dependencies {
576+
implementation 'io.reactivex.rxjava3:rxjava:3.0.0-SNAPSHOT'
577+
}
578+
```
579+
580+
Snapshots before May 1st, 2021 are available via https://oss.jfrog.org/libs-snapshot/io/reactivex/rxjava3/rxjava/
581+
(Note that due to the Sunset of Bintray, our jfrog access has been severed, hence the new snapshot repo above.)
569582

570583
```groovy
571584
repositories {
572585
maven { url 'https://oss.jfrog.org/libs-snapshot' }
573586
}
574587
575588
dependencies {
576-
compile 'io.reactivex.rxjava3:rxjava:3.0.0-SNAPSHOT'
589+
implementation 'io.reactivex.rxjava3:rxjava:3.0.0-SNAPSHOT'
577590
}
578591
```
579592

0 commit comments

Comments
 (0)