Skip to content

Commit

Permalink
feat(kafka): use addDependency
Browse files Browse the repository at this point in the history
  • Loading branch information
fdelbrayelle committed Jul 11, 2022
1 parent c70211c commit c9da3d2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public JHipsterModule buildModule(JHipsterModuleProperties properties) {
.and()
.documentation(documentationTitle("Apache Kafka"), SOURCE.template("apache-kafka.md"))
.javaDependencies()
.dependency(groupId("org.apache.kafka"), artifactId("kafka-clients"))
.dependency(groupId("org.testcontainers"), artifactId("kafka"))
.addDependency(groupId("org.apache.kafka"), artifactId("kafka-clients"))
.addDependency(groupId("org.testcontainers"), artifactId("kafka"))
.and()
.files()
.add(SOURCE.template("kafka.yml"), toSrcMainDocker().append("kafka.yml"))
Expand Down

0 comments on commit c9da3d2

Please sign in to comment.