We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36b2c8e commit d4e1387Copy full SHA for d4e1387
1 file changed
it/xds-istio/build.gradle
@@ -5,7 +5,10 @@ dependencies {
5
implementation libs.testcontainers.k3s
6
implementation libs.testcontainers.junit.jupiter
7
8
- testImplementation project(':xds')
+ testImplementation(project(':xds')) {
9
+ // Exclude the unshaded pgv-java-stub since it should be shaded via xds-pgv-shaded
10
+ exclude group: 'build.buf.protoc-gen-validate', module: 'pgv-java-stub'
11
+ }
12
}
13
14
def kubeconfigEnvValue =
0 commit comments