vertx-extra
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.arpnetworking.metrics.extras</groupId> <artifactId>vertx-extra</artifactId> <version>0.5.0</version> </dependency>
<?xml version="1.0"?> <!-- ~ Copyright 2014 Groupon.com ~ ~ 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. --> <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"> <parent> <groupId>com.arpnetworking.build</groupId> <artifactId>arpnetworking-parent-pom</artifactId> <version>1.0.18</version> <relativePath /> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.arpnetworking.metrics.extras</groupId> <artifactId>vertx-extra</artifactId> <packaging>jar</packaging> <name>Vertx Extra</name> <description>Extension to metrics-java-client which adapts the client for use in the Vert.x framework.</description> <version>0.5.0</version> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>brandonarp</id> <email>brandonarp@gmail.com</email> <organization>Arp Networking</organization> <organizationUrl>http://www.arpnetworking.com</organizationUrl> <roles> <role>developer</role> </roles> </developer> <developer> <id>villekoskela</id> <email>vkoskela@groupon.com</email> <organization>Groupon</organization> <organizationUrl>http://www.groupon.com</organizationUrl> <roles> <role>developer</role> </roles> </developer> <developer> <id>gilmarkham</id> <email>gil@groupon.com</email> <organization>Groupon</organization> <organizationUrl>http://www.groupon.com</organizationUrl> <roles> <role>developer</role> </roles> </developer> <developer> <id>deepikamisra</id> <email>deepika@groupon.com</email> <organization>Groupon</organization> <organizationUrl>http://www.groupon.com</organizationUrl> <roles> <role>developer</role> </roles> </developer> </developers> <scm> <connection>scm:git:git@github.com:arpnetworking/metrics-vertx-extra.git</connection> <developerConnection>scm:git:git@github.com:arpnetworking/metrics-vertx-extra.git</developerConnection> <url>https://github.com/arpnetworking/metrics-vertx-extra</url> <tag>vertx-extra-0.5.0</tag> </scm> <properties> <!--Dependency versions--> <findbugs.annotations.version>3.0.0</findbugs.annotations.version> <google.collections.version>1.0</google.collections.version> <jackson.version>2.6.2</jackson.version> <jsr305.version>3.0.0</jsr305.version> <junit.version>4.12</junit.version> <metrics.client.version>0.4.3</metrics.client.version> <mockito.version>1.10.19</mockito.version> <slf4j.version>1.7.12</slf4j.version> <vertx.version>3.2.1</vertx.version> <vertx.testtools.version>2.0.3-final</vertx.testtools.version> <!-- Findbugs --> <findbugs.exclude>${project.basedir}/findbugs.exclude.xml</findbugs.exclude> <!-- Code Coverage --> <jacoco.check.line.coverage>0.95</jacoco.check.line.coverage> <jacoco.check.branch.coverage>0.95</jacoco.check.branch.coverage> </properties> <build> <plugins> <!-- Enable Inherited Plugins --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.rimerosolutions.maven.plugins</groupId> <artifactId>wrapper-maven-plugin</artifactId> <inherited>false</inherited> </plugin> </plugins> </build> <dependencies> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <!-- Metrics Client --> <dependency> <groupId>com.arpnetworking.metrics</groupId> <artifactId>metrics-client</artifactId> <version>${metrics.client.version}</version> </dependency> <!-- General --> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <version>${vertx.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen</artifactId> <version>${vertx.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${jackson.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${jackson.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> <version>${findbugs.annotations.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>${jsr305.version}</version> <scope>provided</scope> </dependency> <!-- Test - General --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-unit</artifactId> <version>${vertx.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.collections</groupId> <artifactId>google-collections</artifactId> <version>${google.collections.version}</version> <scope>test</scope> </dependency> </dependencies> </project>