File tree 2 files changed +16
-3
lines changed
2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 32
32
- name : Grant execute permission for push
33
33
run : chmod +x push_javadoc.sh
34
34
- name : Build and Snapshot branch
35
- run : ./gradlew -PreleaseMode=branch assemble --stacktrace --no-daemon
35
+ run : ./gradlew -PreleaseMode=branch build --stacktrace --no-daemon
36
36
- name : Upload Snapshot
37
37
run : ./gradlew -PreleaseMode=branch javadocCleanup uploadArchives --no-daemon --no-parallel --stacktrace
38
38
env :
Original file line number Diff line number Diff line change @@ -565,15 +565,28 @@ and for Ivy:
565
565
566
566
### Snapshots
567
567
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.)
569
582
570
583
``` groovy
571
584
repositories {
572
585
maven { url 'https://oss.jfrog.org/libs-snapshot' }
573
586
}
574
587
575
588
dependencies {
576
- compile 'io.reactivex.rxjava3:rxjava:3.0.0-SNAPSHOT'
589
+ implementation 'io.reactivex.rxjava3:rxjava:3.0.0-SNAPSHOT'
577
590
}
578
591
```
579
592
You can’t perform that action at this time.
0 commit comments