Skip to content

Commit

Permalink
'reactor_vesion' -> 'reactor_veRsion' (#1976)
Browse files Browse the repository at this point in the history
  • Loading branch information
turansky authored May 2, 2020
1 parent 9982979 commit 1beebf1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion benchmarks/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ tasks.jmhJar {

dependencies {
compile("org.openjdk.jmh:jmh-core:1.21")
compile("io.projectreactor:reactor-core:${property("reactor_vesion")}")
compile("io.projectreactor:reactor-core:${version("reactor")}")
compile("io.reactivex.rxjava2:rxjava:2.1.9")
compile("com.github.akarnokd:rxjava2-extensions:0.20.8")

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ html_version=0.6.8
lincheck_version=2.7.1
dokka_version=0.9.16-rdev-2-mpp-hacks
byte_buddy_version=1.10.9
reactor_vesion=3.2.5.RELEASE
reactor_version=3.2.5.RELEASE
reactive_streams_version=1.0.2
rxjava2_version=2.2.8
rxjava3_version=3.0.2
Expand Down
4 changes: 2 additions & 2 deletions reactive/kotlinx-coroutines-reactor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
*/

dependencies {
compile "io.projectreactor:reactor-core:$reactor_vesion"
compile "io.projectreactor:reactor-core:$reactor_version"
compile project(':kotlinx-coroutines-reactive')
}

tasks.withType(dokka.getClass()) {
externalDocumentationLink {
url = new URL("https://projectreactor.io/docs/core/$reactor_vesion/api/")
url = new URL("https://projectreactor.io/docs/core/$reactor_version/api/")
packageListUrl = projectDir.toPath().resolve("package.list").toUri().toURL()
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
*/

dependencies {
testImplementation("com.google.android:android:${property("android_version")}")
testImplementation("org.robolectric:robolectric:${property("robolectric_version")}")
testImplementation("com.google.android:android:${version("android")}")
testImplementation("org.robolectric:robolectric:${version("robolectric")}")
testImplementation(project(":kotlinx-coroutines-test"))
testImplementation(project(":kotlinx-coroutines-android"))
}

0 comments on commit 1beebf1

Please # to comment.