<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>de.gsi</groupId>
    <artifactId>chartfx</artifactId>
    <version>11.1.5</version>
    <relativePath>..</relativePath>
  </parent>
  <groupId>de.gsi.math</groupId>
  <artifactId>chartfx-math</artifactId>
  <version>11.1.5</version>
  <name>math</name>
  <description>A small set of math routines that can operate directly on the DataSet primitive for fitting,
		computing spectra, linear algebra, FIR/IIR filtering, and other functionalities common to signal processing.</description>
  <licenses>
    <license>
      <name>Apache-2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
  <dependencies>
    <dependency>
      <groupId>de.gsi.dataset</groupId>
      <artifactId>chartfx-dataset</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>com.github.wendykierp</groupId>
      <artifactId>JTransforms</artifactId>
      <version>3.1</version>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-math3</artifactId>
      <version>3.6.1</version>
    </dependency>
    <dependency>
      <groupId>net.jafama</groupId>
      <artifactId>jafama</artifactId>
      <version>2.3.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
