Skip to content

Commit

Permalink
Fix resource path for native test
Browse files Browse the repository at this point in the history
  • Loading branch information
carlesarnal committed Jul 24, 2024
1 parent bcd2bc4 commit 1688afa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions kafka-json-schema-quickstart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-reactive</artifactId>
<artifactId>quarkus-rest</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-reactive-messaging-kafka</artifactId>
<artifactId>quarkus-messaging-kafka</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-reactive-jackson</artifactId>
<artifactId>quarkus-rest-jackson</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand All @@ -62,7 +62,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client-reactive</artifactId>
<artifactId>quarkus-rest-client</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
kafka.auto.offset.reset=earliest

quarkus.native.resources.includes=json-schema.json

quarkus.reactive-messaging.kafka.serializer-autodetection.enabled=false

# set the topic name for the incoming channel to `movies`, as it's not the channel name
mp.messaging.incoming.movies-from-kafka.topic=movies
mp.messaging.incoming.movies-from-kafka.value.serializer=io.apicurio.registry.serde.jsonschema.JsonSchemaKafkaSerializer
mp.messaging.incoming.movies-from-kafka.value.deserializer=io.apicurio.registry.serde.jsonschema.JsonSchemaKafkaDeserializer

mp.messaging.outgoing.movies.apicurio.registry.auto-register=true
mp.messaging.outgoing.movies.apicurio.registry.artifact.schema.location=/org/acme/kafka/json-schema.json
mp.messaging.outgoing.movies.apicurio.registry.artifact.schema.location=json-schema.json
mp.messaging.outgoing.movies.value.serializer=io.apicurio.registry.serde.jsonschema.JsonSchemaKafkaSerializer
mp.messaging.outgoing.movies.value.deserializer=io.apicurio.registry.serde.jsonschema.JsonSchemaKafkaDeserializer

Expand Down

0 comments on commit 1688afa

Please sign in to comment.