Skip to content

Commit

Permalink
Update parent pom
Browse files Browse the repository at this point in the history
  • Loading branch information
GunalKupta committed Dec 24, 2024
1 parent 0059dd4 commit 7f75e15
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
<module>client-encryption-hcvault</module>
<module>client-encryption</module>
<module>benchmark</module>
<module>jacoco-aggregate-schema-registry</module>
</modules>

<properties>
Expand Down Expand Up @@ -449,6 +450,11 @@
<artifactId>kafka-json-schema-serializer</artifactId>
<version>${io.confluent.schema-registry.version}</version>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>jacoco-aggregate-schema-registry</artifactId>
<version>${io.confluent.schema-registry.version}</version>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-streams-json-schema-serde</artifactId>
Expand Down Expand Up @@ -561,6 +567,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>generate-code-coverage-report</id>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>

</build>
Expand Down

0 comments on commit 7f75e15

Please sign in to comment.