java-driver-metrics-microprofile
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.scylladb</groupId> <artifactId>java-driver-metrics-microprofile</artifactId> <version>4.17.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright DataStax, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!-- Copyright (C) 2021 ScyllaDB Modified by ScyllaDB --> <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 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.scylladb</groupId> <artifactId>java-driver-parent</artifactId> <version>4.17.0.0</version> <relativePath>../../</relativePath> </parent> <artifactId>java-driver-metrics-microprofile</artifactId> <packaging>bundle</packaging> <name>DataStax Java driver for Apache Cassandra(R) - Metrics - Microprofile</name> <dependencyManagement> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>java-driver-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.eclipse.microprofile.metrics</groupId> <artifactId>microprofile-metrics-api</artifactId> </dependency> <dependency> <groupId>com.scylladb</groupId> <artifactId>java-driver-core</artifactId> <exclusions> <exclusion> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> </exclusion> <exclusion> <groupId>org.hdrhistogram</groupId> <artifactId>HdrHistogram</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.smallrye</groupId> <artifactId>smallrye-metrics</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.tngtech.java</groupId> <artifactId>junit-dataprovider</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.scylladb</groupId> <artifactId>java-driver-core</artifactId> <scope>test</scope> <type>test-jar</type> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <!-- This module only has internal classes, yet we need a javadoc JAR to pass Maven central validation rules. --> <execution> <id>javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <excludes> <exclude>**</exclude> </excludes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.revapi</groupId> <artifactId>revapi-maven-plugin</artifactId> <configuration> <!-- This module doesn't have any non-internal classes, so we can simply skip revapi --> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>