Skip to content
This repository was archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
Formatting common/deploy/UsingQuarkusPluginDeploymentStrategy.java
Browse files Browse the repository at this point in the history
  • Loading branch information
pablo gonzalez granados committed May 10, 2021
1 parent 482177f commit 65b81bd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public class StrimziKafkaResource implements QuarkusTestResourceLifecycleManager
public Map<String, String> start() {
Network network = Network.newNetwork();
kafkaContainer = new StrimziKafkaContainer("latest-kafka-2.7.0").withNetwork(network);
schemaRegistry = new SchemaRegistryContainer("apicurio/apicurio-registry-mem", "1.2.2.Final", 8080).withNetwork(network).withKafka(kafkaContainer, 9092);
schemaRegistry = new SchemaRegistryContainer("apicurio/apicurio-registry-mem", "1.2.2.Final", 8080).withNetwork(network)
.withKafka(kafkaContainer, 9092);

Startables.deepStart(Stream.of(kafkaContainer, schemaRegistry)).join();

Expand Down

0 comments on commit 65b81bd

Please sign in to comment.