16 lines
462 B
Groovy
16 lines
462 B
Groovy
/*
|
|
* 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()
|
|
}
|
|
} |