blob: 90f2898f056da4c33edc44bc5f9d347133c91695 [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
Roman Elizarov5b946522018-02-23 21:27:59 +03005ext.guava_version = '24.0-jre'
6
Kirill Timofeeva5186962017-10-25 14:25:47 +03007dependencies {
8 compile "com.google.guava:guava:$guava_version"
9}
Roman Elizarove00f0ba2017-12-23 00:29:29 +030010
11tasks.withType(dokka.getClass()) {
Kirill Timofeeva5186962017-10-25 14:25:47 +030012 externalDocumentationLink {
13 url = new URL("https://google.github.io/guava/releases/$guava_version/api/docs/")
14 }
15}