generator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.arpnetworking.metrics</groupId> <artifactId>generator</artifactId> <version>1.3.1</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>2.0.5</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.3.1</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>brandon.arp@inscopemetrics.io</email> <organization>Inscope Metrics</organization> <organizationUrl>http://www.inscopemetrics.io</organizationUrl> <roles> <role>developer</role> </roles> </developer> <developer> <id>villekoskela</id> <email>ville.koskela@inscopemetrics.io</email> <organization>Inscope Metrics</organization> <organizationUrl>http://www.inscopemetrics.io</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.3.1</tag> </scm> <properties> <!--Dependency versions--> <commons.version>1.18.3</commons.version> <commons.math.version>3.6.1</commons.math.version> <guava.version>25.1-jre</guava.version> <jackson.version>2.9.8</jackson.version> <jsr305.version>3.0.2</jsr305.version> <junit.version>4.13</junit.version> <logback.steno.version>1.18.2</logback.steno.version> <metrics.client.version>0.11.2</metrics.client.version> <metrics.filesink.extra.version>0.11.2</metrics.filesink.extra.version> <oval.version>1.90</oval.version> <spotbugs.annotations.version>4.0.3</spotbugs.annotations.version> <!-- Code Coverage --> <jacoco.check.line.coverage>0.55</jacoco.check.line.coverage> <jacoco.check.branch.coverage>0.29</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>com.github.spotbugs</groupId> <artifactId>spotbugs-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> </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> <exclusions> <!-- TODO(ville): Remove suppression once findbugs to spotbugs migration is complete --> <exclusion> <groupId>com.google.code.findbugs</groupId> <artifactId>findbugs-annotations</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.arpnetworking.metrics.extras</groupId> <artifactId>file-sink-extra</artifactId> <version>${metrics.filesink.extra.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> <exclusions> <!-- TODO(ville): Remove suppression once findbugs to spotbugs migration is complete --> <exclusion> <groupId>com.google.code.findbugs</groupId> <artifactId>findbugs-annotations</artifactId> </exclusion> </exclusions> </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.github.spotbugs</groupId> <artifactId>spotbugs-annotations</artifactId> <version>${spotbugs.annotations.version}</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>${jsr305.version}</version> </dependency> <!-- Test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> <scope>test</scope> <exclusions> <!-- TODO(ville): Remove this exclusion once the annotations package is consistently depended upon: https://github.com/FasterXML/jackson-bom/issues/15 --> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </project>