Maven Central: org.apache.commons:commons-statistics-parent

commons-statistics-parent

Overview

Description

The Apache Commons Statistics project provides tools for statistics.

Snippets

Apache Maven

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-statistics-parent</artifactId>
    <version>1.3</version>
</dependency>

Maven POM File

<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/maven-v4_0_0.xsd">
  <parent>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-parent</artifactId>
    <version>99</version>
  </parent>

<modelVersion>4.0.0</modelVersion>
  <artifactId>commons-statistics-parent</artifactId>
  <packaging>pom</packaging>
  <version>1.3</version>
  <name>Apache Commons Statistics</name>

<inceptionYear>2018</inceptionYear>
  <description>The Apache Commons Statistics project provides tools for statistics.</description>
  <url>https://commons.apache.org/proper/commons-statistics/</url>

<issueManagement>
    <system>jira</system>
    <url>https://issues.apache.org/jira/browse/STATISTICS</url>
  </issueManagement>

<scm>
    <connection>scm:git:https://gitbox.apache.org/repos/asf/commons-statistics.git</connection>
    <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-statistics.git</developerConnection>
    <url>https://gitbox.apache.org/repos/asf?p=commons-statistics.git</url>
  </scm>

<ciManagement>
    <system>GitHub</system>
    <url>https://github.com/apache/commons-statistics/actions</url>
  </ciManagement>

<distributionManagement>
    <site>
      <id>apache.website</id>
      <name>Apache Commons Site</name>
      <url>scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-statistics/</url>
    </site>
  </distributionManagement>

<developers>
    <developer>
      <name>Gilles Sadowski</name>
      <id>erans</id>
      <email>erans at apache dot org</email>
    </developer>
    <developer>
      <name>Alex Herbert</name>
      <id>aherbert</id>
      <email>aherbert at apache dot org</email>
    </developer>
  </developers>

<contributors>
    <contributor>
      <name>Ben Nguyen</name>
      <email>bennguyenib at gmail dot com</email>
    </contributor>
    <contributor>
      <name>Arturo Bernal</name>
    </contributor>
    <contributor>
      <name>Anirudh Joshi</name>
      <email>janirudhg at gmail dot com</email>
    </contributor>
  </contributors>

<properties>
    <commons.componentid>statistics</commons.componentid>
    <commons.osgi.symbolicName>org.apache.commons.statistics</commons.osgi.symbolicName>
    <commons.osgi.export>org.apache.commons.statistics</commons.osgi.export>
    <commons.module.name>org.apache.commons.statistics</commons.module.name>
    <commons.release.isDistModule>false</commons.release.isDistModule>
    <statistics.build.outputTimestamp>2026-04-27T00:00:00Z</statistics.build.outputTimestamp>
    <project.build.outputTimestamp>${statistics.build.outputTimestamp}</project.build.outputTimestamp>
    <commons.release.version>1.3</commons.release.version>
    <commons.bc.version>1.2</commons.bc.version>
    <commons.rc.version>RC1</commons.rc.version>
    <commons.release.desc>(requires Java 8)</commons.release.desc>
    <commons.binary.suffix>-bin</commons.binary.suffix>
    <commons.jira.id>STATISTICS</commons.jira.id>
    <commons.jira.pid>12321632</commons.jira.pid>
    <commons.encoding>UTF-8</commons.encoding>
    <commons.compiler.release>8</commons.compiler.release>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <perform.site.checkout>true</perform.site.checkout>
  </properties>

<dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-rng-bom</artifactId>
        <version>${statistics.commons.rng.version}</version>
        <scope>import</scope>
        <type>pom</type>
      </dependency>
      <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-numbers-bom</artifactId>
        <version>${statistics.commons.numbers.version}</version>
        <scope>import</scope>
        <type>pom</type>
      </dependency>
      <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-math3</artifactId>
        <version>${statistics.commons.math3.version}</version>
      </dependency>
    </dependencies>
  </dependencyManagement>

<dependencies>
     <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

<build>
    <defaultGoal>clean verify javadoc:javadoc</defaultGoal>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <compilerArgs>
            <arg>-Xlint:all,-options,-path</arg>
          </compilerArgs>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive combine.children="append">
            <manifestEntries>
              <Automatic-Module-Name>${commons.module.name}</Automatic-Module-Name>
              <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
              <X-Compile-Source-JDK>${maven.compiler.source}</X-Compile-Source-JDK>
              <X-Compile-Target-JDK>${maven.compiler.target}</X-Compile-Target-JDK>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>

<reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.rat</groupId>
        <artifactId>apache-rat-plugin</artifactId>
        <configuration>
          <inputExcludes>
            <inputExclude>.ekstazi/**</inputExclude>
            <inputExclude>src/site/resources/release-notes/RELEASE-NOTES-*.txt</inputExclude>
            <inputExclude>dist-archive/**</inputExclude>
          </inputExcludes>
        </configuration>
      </plugin>
    </plugins>
  </reporting>

<modules>
    <module>commons-statistics-descriptive</module>
    <module>commons-statistics-distribution</module>
    <module>commons-statistics-ranking</module>
    <module>commons-statistics-inference</module>
    <module>commons-statistics-interval</module>
    <module>commons-statistics-bom</module>
    <module>commons-statistics-docs</module>
  </modules>
</project>

Metadata

Age: 2 months ago
Licenses:

Organization

Name: org.apache.commons

External Resources

Known Contributors

Sonatype Guide