Re-enable KafkaIT test (#86)

diff --git a/kafka/src/main/resources/application.properties b/kafka/src/main/resources/application.properties
index 670b6bf..e1196bd 100644
--- a/kafka/src/main/resources/application.properties
+++ b/kafka/src/main/resources/application.properties
@@ -15,9 +15,12 @@
 ## limitations under the License.
 ## ---------------------------------------------------------------------------
 
-#Kafka topic Name
+# Kafka topic Name
 kafka.topic.name=test
 
+# Kafka brokers in native test
+%prod.camel.component.kafka.brokers=${kafka.bootstrap.servers}
+
 # How often should the messages be generated and pushed to Kafka Topic
 timer.period = 10000
 timer.delay = 10000
diff --git a/kafka/src/test/java/org/acme/kafka/KafkaIT.java b/kafka/src/test/java/org/acme/kafka/KafkaIT.java
index f4c719a..d8ff556 100644
--- a/kafka/src/test/java/org/acme/kafka/KafkaIT.java
+++ b/kafka/src/test/java/org/acme/kafka/KafkaIT.java
@@ -17,9 +17,7 @@
 package org.acme.kafka;
 
 import io.quarkus.test.junit.QuarkusIntegrationTest;
-import org.junit.jupiter.api.Disabled;
 
-@Disabled("https://github.com/apache/camel-quarkus/issues/3157")
 @QuarkusIntegrationTest
 public class KafkaIT extends KafkaTest {
 }