You can download vertx-dropwizard-metrics-3.3.3.jar in this page.
Open Source License
vertx-dropwizard-metrics-3.3.3.jar file has the following types.
META-INF/INDEX.LIST META-INF/MANIFEST.MF META-INF/maven/io.vertx/vertx-dropwizard-metrics/pom.properties META-INF/maven/io.vertx/vertx-dropwizard-metrics/pom.xml META-INF/services/io.vertx.core.spi.VertxMetricsFactory META-INF/services/io.vertx.ext.shell.spi.CommandResolverFactory io.vertx.ext.dropwizard.DropwizardMetricsOptions.class io.vertx.ext.dropwizard.Match.class io.vertx.ext.dropwizard.MatchType.class io.vertx.ext.dropwizard.MetricsService.class io.vertx.ext.dropwizard.ScheduledMetricsConsumer.class io.vertx.ext.dropwizard.ThroughputMeter.class io.vertx.ext.dropwizard.ThroughputTimer.class io.vertx.ext.dropwizard.impl.AbstractMetrics.class io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.class io.vertx.ext.dropwizard.impl.EndpointMetric.class io.vertx.ext.dropwizard.impl.EventBusMetricsImpl.class io.vertx.ext.dropwizard.impl.Helper.class io.vertx.ext.dropwizard.impl.HttpClientConnectionMetric.class io.vertx.ext.dropwizard.impl.HttpClientMetricsImpl.class io.vertx.ext.dropwizard.impl.HttpClientReporter.class io.vertx.ext.dropwizard.impl.HttpClientRequestMetric.class io.vertx.ext.dropwizard.impl.HttpMetricsImpl.class io.vertx.ext.dropwizard.impl.HttpServerMetricsImpl.class io.vertx.ext.dropwizard.impl.InstantThroughput.class io.vertx.ext.dropwizard.impl.Matcher.class io.vertx.ext.dropwizard.impl.MetricsServiceImpl.class io.vertx.ext.dropwizard.impl.PoolMetricsImpl.class io.vertx.ext.dropwizard.impl.RegistryHelper.class io.vertx.ext.dropwizard.impl.RequestMetric.class io.vertx.ext.dropwizard.impl.TCPMetricsImpl.class io.vertx.ext.dropwizard.impl.VertxMetricsFactoryImpl.class io.vertx.ext.dropwizard.impl.VertxMetricsImpl.class io.vertx.ext.dropwizard.impl.WebSocketMetric.class io.vertx.ext.dropwizard.impl.shell.MetricsCommandPack.class io.vertx.ext.dropwizard.impl.shell.MetricsInfo.class io.vertx.ext.dropwizard.impl.shell.MetricsLs.class io.vertx.ext.dropwizard.package-info.class io.vertx.ext.dropwizard.reporters.JmxReporter.class io.vertx.groovy.ext.dropwizard.MetricsService.class io.vertx.rxjava.ext.dropwizard.MetricsService.class vertx-dropwizard-js/metrics_service.js vertx-dropwizard/metrics_service.rb
vertx-dropwizard-metrics-3.3.3.pom file content.
<?xml version="1.0"?> <!-- ~ Copyright (c) 2011-2014 The original author or authors ~ ~ All rights reserved. This program and the accompanying materials ~ are made available under the terms of the Eclipse Public License v1.0 ~ and Apache License v2.0 which accompanies this distribution. ~ ~ The Eclipse Public License is available at ~ http://www.eclipse.org/legal/epl-v10.html ~ ~ The Apache License v2.0 is available at ~ http://www.opensource.org/licenses/apache2.0.php ~ ~ You may elect to redistribute this code under either of these licenses. --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.vertx</groupId> <artifactId>vertx-ext-parent</artifactId> <version>20</version> </parent> <artifactId>vertx-dropwizard-metrics</artifactId> <version>3.3.3</version> <name>Vert.x Dropwizard Metrics</name> <properties> <stack.version>3.3.3</stack.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-dependencies</artifactId> <version>${stack.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-shell</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> <version>3.1.2</version> <exclusions> <!-- do not use slf4j from metrics-core, as the version may differ from the one used by vert.x --> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-lang-groovy</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-lang-js</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-lang-ruby</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-rx-java</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-docgen</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codetrans</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> <version>4.12</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-service-factory</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>default-jar</id> <configuration> <archive> <!-- Generate a jar INDEX.LIST --> <index>true</index> <!-- A manifest containing the OSGi metadata has been generated using the maven-bundle-plugin --> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> <!-- Add the Maven coordinates in the manifest --> <manifestEntries> <Maven-Group-Id>${project.groupId}</Maven-Group-Id> <Maven-Artifact-Id>${project.artifactId}</Maven-Artifact-Id> <Maven-Version>${project.version}</Maven-Version> </manifestEntries> </archive> <!-- Remove examples and docoverride --> <excludes> <exclude>/examples/**</exclude> </excludes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-maven-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>default-bnd-process</id> <goals> <goal>bnd-process</goal> </goals> </execution> </executions> <configuration> <!-- To use this bundle in OSGi check https://github.com/vert-x3/issues/issues/178#issuecomment-241643262 --> <bnd><![CDATA[ Import-Package: \ groovy.lang.*;resolution:=optional,\ org.codehaus.groovy.*;resolution:=optional,\ io.vertx.groovy.*;resolution:=optional,\ io.vertx.lang.rxjava.*;resolution:=optional,\ io.vertx.lang.groovy.*;resolution:=optional,\ io.vertx.codegen.annotations;resolution:=optional,\ io.vertx.rx.java;resolution:=optional,\ io.vertx.rxjava.core.*;resolution:=optional,\ io.vertx.rxjava.ext.auth.*;resolution:=optional,\ rx.*;resolution:=optional,\ io.vertx.ext.shell.*;resolution:=optional,\ * Require-Capability: osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"; resolution:="optional" Provide-Capability: osgi.serviceloader; osgi.serviceloader=io.vertx.core.spi.VertxMetricsFactory -exportcontents: !*impl, !examples, * ]]></bnd> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <!-- Execute with mvn java:exec --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.4.0</version> <configuration> <executable>java</executable> <classpathScope>test</classpathScope> <arguments> <!--<argument>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005</argument>--> <argument>-classpath</argument> <classpath/> <argument>-Dvertx.metrics.options.enabled=true</argument> <argument>io.vertx.core.Launcher</argument> <argument>run</argument> <argument>-conf</argument> <argument>{"telnetOptions":{"port":5000}}</argument> <argument>service:io.vertx.ext.shell</argument> </arguments> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>
<dependency> <groupId>io.vertx</groupId> <artifactId>vertx-dropwizard-metrics</artifactId> <version>3.3.3</version> </dependency>
If you think the following vertx-dropwizard-metrics-3.3.3.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download vertx-dropwizard-metrics-3.3.3.jar file