blob: 9e44b998642276cb27e6d4423e56a3a3886f61e2 [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
ext.guava_version = '28.0-jre'
dependencies {
compile "com.google.guava:guava:$guava_version"
}
tasks.withType(dokka.getClass()) {
externalDocumentationLink {
url = new URL("https://google.github.io/guava/releases/$guava_version/api/docs/")
packageListUrl = projectDir.toPath().resolve("package.list").toUri().toURL()
}
}