generator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.arpnetworking.metrics</groupId> <artifactId>generator</artifactId> <version>1.0.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2015 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/xsd/maven-4.0.0.xsd"> <parent> <groupId>com.arpnetworking.build</groupId> <artifactId>arpnetworking-parent-pom</artifactId> <version>1.0.18</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.arpnetworking.metrics</groupId> <artifactId>generator</artifactId> <packaging>jar</packaging> <name>Metrics Generator</name> <description>Library for generating metric samples.</description> <url>https://github.com/ArpNetworking/metrics-generator</url> <version>1.0.3</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> </developers> <scm> <connection>scm:git:git@github.com:arpnetworking/metrics-generator.git</connection> <developerConnection>scm:git:git@github.com:arpnetworking/metrics-generator.git</developerConnection> <url>https://github.com/arpnetworking/metrics-generator</url> <tag>generator-1.0.3</tag> </scm> <properties> <!--Dependency versions--> <commons.version>1.0.1</commons.version> <commons.math.version>3.4.1</commons.math.version> <findbugs.annotations.version>3.0.0</findbugs.annotations.version> <guava.version>18.0</guava.version> <joda.time.version>2.8.2</joda.time.version> <logback.steno.version>1.11.1</logback.steno.version> <metrics.client.version>0.4.5</metrics.client.version> <oval.version>1.82</oval.version> <!-- Findbugs --> <findbugs.exclude>${project.basedir}/findbugs.exclude.xml</findbugs.exclude> <!-- Code Coverage --> <jacoco.check.line.coverage>0.0</jacoco.check.line.coverage> <jacoco.check.branch.coverage>0.0</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> <!-- See custom checkstyle plugin block below. <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>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.rimerosolutions.maven.plugins</groupId> <artifactId>wrapper-maven-plugin</artifactId> <inherited>false</inherited> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>appassembler-maven-plugin</artifactId> <configuration> <programs> <program> <id>metrics-generator</id> <mainClass>com.arpnetworking.metrics.generator.Generator</mainClass> </program> </programs> </configuration> </plugin> <!-- There is a problem with suppression of regex check for shaded package imports in GeneratorSink.java; this causes a NullPointerException in Checkstyle on 'mvn verify'. The problem does not present during initial build or 'mvn clean verify'. The issue is captured here: https://github.com/checkstyle/checkstyle/issues/2284 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <excludes> com/arpnetworking/metrics/generator/client/GeneratorSink.java </excludes> </configuration> </plugin> </plugins> </build> <dependencies> <!-- Logging --> <dependency> <groupId>com.arpnetworking.logback</groupId> <artifactId>logback-steno</artifactId> <version>${logback.steno.version}</version> </dependency> <!-- Metrics --> <dependency> <groupId>com.arpnetworking.metrics</groupId> <artifactId>metrics-client</artifactId> <version>${metrics.client.version}</version> </dependency> <!-- Google --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <!-- General --> <dependency> <groupId>com.arpnetworking.commons</groupId> <artifactId>commons</artifactId> <version>${commons.version}</version> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>${joda.time.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <version>${commons.math.version}</version> </dependency> <dependency> <groupId>net.sf.oval</groupId> <artifactId>oval</artifactId> <version>${oval.version}</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> <version>${findbugs.annotations.version}</version> </dependency> </dependencies> </project>