xref: /aosp_15_r20/external/kotlinx.coroutines/integration/kotlinx-coroutines-guava/build.gradle.kts (revision 7a7160fed73afa6648ef8aa100d4a336fe921d9a)
1 val guavaVersion = "31.0.1-jre"
2 
<lambda>null3 dependencies {
4     api("com.google.guava:guava:$guavaVersion")
5 }
6 
<lambda>null7 java {
8     targetCompatibility = JavaVersion.VERSION_1_8
9     sourceCompatibility = JavaVersion.VERSION_1_8
10 }
11 
12 externalDocumentationLink(
13     url = "https://google.github.io/guava/releases/$guavaVersion/api/docs/"
14 )
15