1 /* 2 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 5 val guavaVersion = "31.0.1-jre" 6 <lambda>null7dependencies { 8 api("com.google.guava:guava:$guavaVersion") 9 } 10 <lambda>null11java { 12 targetCompatibility = JavaVersion.VERSION_1_8 13 sourceCompatibility = JavaVersion.VERSION_1_8 14 } 15 16 externalDocumentationLink( 17 url = "https://google.github.io/guava/releases/$guavaVersion/api/docs/" 18 ) 19