qdrant-java-client-report
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.metaloom.qdrant</groupId>
<artifactId>qdrant-java-client-report</artifactId>
<version>0.13.0</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>qdrant-java-client-report</artifactId>
<parent>
<groupId>io.metaloom.qdrant</groupId>
<artifactId>qdrant-java-client</artifactId>
<version>0.13.0</version>
</parent>
<name>Qdrant Java Client :: report</name>
<description>Aggregate Coverage Report</description>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>qdrant-java-client-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>qdrant-java-http-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>qdrant-java-grpc-client</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>