blob: 37293b2b3c30814295ca20f6e8d77d36347c9634 [file] [log] [blame]
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03001/*
2 * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3 */
4
Kirill Timofeeva5186962017-10-25 14:25:47 +03005ext.reactive_streams_version = '1.0.0'
6dependencies {
7 compile "org.reactivestreams:reactive-streams:$reactive_streams_version"
8}
Roman Elizarove00f0ba2017-12-23 00:29:29 +03009
10tasks.withType(dokka.getClass()) {
Kirill Timofeeva5186962017-10-25 14:25:47 +030011 externalDocumentationLink {
12 url = new URL("http://www.reactive-streams.org/reactive-streams-$reactive_streams_version-javadoc/")
13 }
14}