File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
rsocket-core/src/main/java/io/rsocket/internal Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -88,8 +88,11 @@ subprojects {
88
88
repositories {
89
89
mavenCentral()
90
90
91
- if (version. endsWith(' BUILD- SNAPSHOT' ) || project. hasProperty(' platformVersion' )) {
91
+ if (version. endsWith(' SNAPSHOT' ) || project. hasProperty(' platformVersion' )) {
92
92
maven { url ' http://repo.spring.io/libs-snapshot' }
93
+ maven {
94
+ url ' https://oss.jfrog.org/artifactory/oss-snapshot-local'
95
+ }
93
96
}
94
97
}
95
98
Original file line number Diff line number Diff line change 9
9
import reactor .util .annotation .Nullable ;
10
10
11
11
/**
12
- * Represents an empty publisher which only calls onSubscribe and onComplete.
13
- *
14
- * <p>This Publisher is effectively stateless and only a single instance exists. Use the {@link
15
- * #instance()} method to obtain a properly type-parametrized view of it.
12
+ * Represents an empty publisher which only calls onSubscribe and onComplete and allows only a
13
+ * single subscriber.
16
14
*
17
15
* @see <a href="https://github.com/reactor/reactive-streams-commons">Reactive-Streams-Commons</a>
18
16
*/
You can’t perform that action at this time.
0 commit comments