1 /*
2  * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3  */
4 
5 val guavaVersion = "28.0-jre"
6 
<lambda>null7 dependencies {
8     compile("com.google.guava:guava:$guavaVersion")
9 }
10 
11 externalDocumentationLink(
12     url = "https://google.github.io/guava/releases/$guavaVersion/api/docs/"
13 )
14