Skip to content
This repository was archived by the owner on Mar 2, 2022. It is now read-only.

Commit 627330c

Browse files
committed
Updated Readme
Upgrade gradle to 4.3.1
1 parent 699f61b commit 627330c

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Build Status](https://travis-ci.org/reactor/reactor-scala-extensions.svg?branch=master)](https://travis-ci.org/reactor/reactor-scala-extensions)
55
[![codecov](https://codecov.io/gh/reactor/reactor-scala-extensions/branch/master/graph/badge.svg)](https://codecov.io/gh/reactor/reactor-scala-extensions)
66

7-
This project is a Scala wrapper for [reactor-core](https://github.com/reactor/reactor-core).
7+
This project is a Scala extension for [reactor-core](https://github.com/reactor/reactor-core).
88

99
Using reactor-core project as it is in scala code will look ugly because
1010
a lot of methods use Java 8 lambda which is not compatible with Scala lambda.
@@ -21,6 +21,8 @@ it becomes
2121

2222
val mono = Mono.just(1).map(_.toString)
2323

24+
This extension will also return scala's `scala.collection.immutable.Stream` instead of Java's `java.util.stream.Stream`
25+
and `scala.concurrent.Future` instead of `java.util.concurrent.CompletableFuture`
2426
## Getting it
2527

2628
With Gradle:
@@ -31,8 +33,8 @@ With Gradle:
3133
}
3234

3335
dependencies {
34-
//compile "io.projectreactor:reactor-scala-extensions:0.2.6-SNAPSHOT
35-
compile "io.projectreactor:reactor-scala-extensions:0.2.5
36+
//compile "io.projectreactor:reactor-scala-extensions:0.3.1-SNAPSHOT
37+
compile "io.projectreactor:reactor-scala-extensions:0.3.0
3638
}
3739

3840
With Maven:
@@ -53,13 +55,13 @@ With Maven:
5355
<dependency>
5456
<groupId>io.projectreactor</groupId>
5557
<artifactId>reactor-scala-extensions</artifactId>
56-
<version>0.2.6-SNAPSHOT</version>
58+
<version>0.3.1-SNAPSHOT</version>
5759
</dependency>
5860
-->
5961
<dependency>
6062
<groupId>io.projectreactor</groupId>
6163
<artifactId>reactor-scala-extensions</artifactId>
62-
<version>0.2.5</version>
64+
<version>0.3.0</version>
6365
</dependency>
6466

6567
## Contributing

gradle/wrapper/gradle-wrapper.jar

4 Bytes
Binary file not shown.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Sun Oct 22 23:50:09 SGT 2017
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
43
zipStoreBase=GRADLE_USER_HOME
54
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2.1-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.3.1-bin.zip

0 commit comments

Comments
 (0)