We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e81f96d commit 7e572e0Copy full SHA for 7e572e0
wire-java-generator/build.gradle.kts
@@ -7,7 +7,16 @@ dependencies {
7
api(projects.wireSchema)
8
implementation(projects.wireRuntime)
9
implementation(libs.okio.core)
10
- implementation(libs.guava)
+ constraints {
11
+ add("implementation", libs.guava) {
12
+ attributes {
13
+ attribute(
14
+ TargetJvmEnvironment.TARGET_JVM_ENVIRONMENT_ATTRIBUTE,
15
+ objects.named(TargetJvmEnvironment::class.java, TargetJvmEnvironment.STANDARD_JVM),
16
+ )
17
+ }
18
19
20
api(libs.javapoet)
21
compileOnly(libs.jsr305)
22
testImplementation(projects.wireTestUtils)
0 commit comments