t-digest-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.tdunning</groupId> <artifactId>t-digest-parent</artifactId> <version>3.3</version> </dependency>
<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> <groupId>com.tdunning</groupId> <artifactId>t-digest-parent</artifactId> <version>3.3</version> <name>T-digest Parent</name> <packaging>pom</packaging> <description>Data structure which allows accurate estimation of quantiles and related rank statistics</description> <url>https://github.com/tdunning/t-digest</url> <scm> <developerConnection>scm:git:origin</developerConnection> <url>https://github.com/tdunning/t-digest</url> <tag>t-digest-parent-3.3</tag> </scm> <developers> <developer> <id>tdunning</id> <name>Ted</name> <email>ted.dunning@gmail.com</email> <url>https://github.com/tdunning/t-digest</url> <roles> <role>developer</role> </roles> <timezone>-8</timezone> <properties> <twitter>@ted_dunning</twitter> </properties> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <modules> <module>../core</module> </modules> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus snapshot repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype Nexus release repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <source>8</source> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerVersion>1.8</compilerVersion> <source>8</source> <target>8</target> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>