Skip to content

Commit

Permalink
Make test error reproducible
Browse files Browse the repository at this point in the history
  • Loading branch information
carlesarnal committed Feb 4, 2025
1 parent 0e56d8e commit dfcab7a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 0 additions & 2 deletions bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6612,8 +6612,6 @@
<!-- we don't want our BOM to enforce Okhttp dependencies -->
<key>com.squareup.okhttp3:*</key>
<key>com.squareup.okhttp:*</key>
<key>com.squareup.okio:*</key>

<!-- jboss-parent:40 still manages jdk-misc, but does not define version.jdk-misc anymore. -->
<!-- We can just remove it because is not needed anyway. -->
<!-- The exclusion can be removed once all imported BOMs depend on jboss-parent:41+ -->
Expand Down
4 changes: 4 additions & 0 deletions extensions/schema-registry/apicurio/protobuf/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
<artifactId>slf4j-jboss-logging</artifactId>
<groupId>org.jboss.slf4j</groupId>
</exclusion>
<exclusion>
<artifactId>okhttp</artifactId>
<groupId>com.squareup.okhttp3</groupId>
</exclusion>
</exclusions>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<!-- Exclude okhttp -->
<exclude>com.squareup.okhttp3:*</exclude>
<exclude>com.squareup.okhttp:*</exclude>
<exclude>com.squareup.okio:*</exclude>
</excludes>
<message>Found Okhttp dependencies:</message>
</bannedDependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package io.quarkus.it.kafka;

import org.junit.jupiter.api.BeforeAll;

import io.apicurio.registry.rest.client.RegistryClientFactory;
import io.apicurio.rest.client.VertxHttpClientProvider;
import io.quarkus.it.kafka.protobuf.ProtobufKafkaCreator;
import io.quarkus.test.common.QuarkusTestResource;
import io.quarkus.test.junit.QuarkusIntegrationTest;
import io.vertx.core.Vertx;
import org.junit.jupiter.api.BeforeAll;

@QuarkusIntegrationTest
@QuarkusTestResource(value = KafkaResource.class, restrictToAnnotatedClass = true)
Expand Down

0 comments on commit dfcab7a

Please sign in to comment.