<?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>
  <groupId>de.gsi</groupId>
  <artifactId>chartfx</artifactId>
  <version>11.1.5</version>
  <packaging>pom</packaging>
  <name>chartfx</name>
  <description>This charting library ${project.artifactId}- is an extension
        in the spirit of Oracle's XYChart and performance/time-proven JDataViewer charting functionalities.
        Emphasis was put on plotting performance for both large number of data points and real-time displays,
        as well as scientific accuracies leading to error bar/surface plots, and other scientific plotting
        features (parameter measurements, fitting, multiple axes, zoom, ...).
        The library also contains 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>
  <url>https://github.com/GSI-CS-CO/chart-fx</url>
  <organization>
    <name>GSI Helmholtzzentrum für Schwerionenforschung GmbH</name>
    <url>http://www.gsi.de</url>
  </organization>
  <licenses>
    <license>
      <name>Apache-2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>hbraeun</id>
      <name>Harald Brauening</name>
      <email>H.Braeuning@gsi.de</email>
      <url>https://www.gsi.de/en/work/project_management_fair/commons/beam_instrumentation.htm</url>
      <roles>
        <role>owner</role>
        <role>architect</role>
        <role>developer</role>
      </roles>
      <timezone>+1</timezone>
    </developer>
    <developer>
      <id>rstein</id>
      <name>Ralph J. Steinhagen</name>
      <email>R.Steinhagen@gsi.de</email>
      <url>https://fair-wiki.gsi.de/FC2WG</url>
      <roles>
        <role>owner</role>
        <role>architect</role>
        <role>developer</role>
      </roles>
      <timezone>+1</timezone>
    </developer>
    <developer>
      <id>akrimm</id>
      <name>Alexander Krimm</name>
      <email>A.Krimm@gsi.de</email>
      <roles>
        <role>developer</role>
      </roles>
      <timezone>+1</timezone>
    </developer>
  </developers>
  <modules>
    <module>chartfx-acc</module>
    <module>chartfx-chart</module>
    <module>chartfx-dataset</module>
    <module>chartfx-math</module>
    <module>chartfx-samples</module>
    <module>chartfx-report</module>
  </modules>
  <scm>
    <connection>scm:git:https://github.com/GSI-CS-CO/chart-fx.git</connection>
    <developerConnection>scm:git:git@github.com:GSI-CS-CO/chart-fx.git</developerConnection>
    <url>https://github.com/GSI-CS-CO/chart-fx</url>
  </scm>
  <distributionManagement>
    <snapshotRepository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
  </distributionManagement>
  <properties>
    <chartfx.slf4j.version>2.0.0-alpha0</chartfx.slf4j.version>
    <chartfx.junit.jupiter.version>5.6.1</chartfx.junit.jupiter.version>
    <chartfx.javafxsvg.version>1.3.0</chartfx.javafxsvg.version>
    <chartfx.jacoco.version>0.8.5</chartfx.jacoco.version>
    <chartfx.surefire.version>2.22.2</chartfx.surefire.version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <chartfx.awaitility.version>4.0.2</chartfx.awaitility.version>
    <chartfx.icu4j.version>65.1</chartfx.icu4j.version>
    <maven.compiler.source>11</maven.compiler.source>
    <revision>11.1.0</revision>
    <sha1></sha1>
    <maven.compiler.target>11</maven.compiler.target>
    <chartfx.javafx.version>13.0.1</chartfx.javafx.version>
    <changelist>-SNAPSHOT</changelist>
    <chartfx.controlsfx.version>11.0.0</chartfx.controlsfx.version>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.apache.xmlgraphics</groupId>
        <artifactId>batik-transcoder</artifactId>
        <version>1.12</version>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>${chartfx.slf4j.version}</version>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <version>${chartfx.slf4j.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <version>${chartfx.junit.jupiter.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-params</artifactId>
      <version>${chartfx.junit.jupiter.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.awaitility</groupId>
      <artifactId>awaitility</artifactId>
      <version>${chartfx.awaitility.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>3.8.1</version>
          <configuration></configuration>
        </plugin>
        <plugin>
          <artifactId>maven-source-plugin</artifactId>
          <version>3.0.1</version>
        </plugin>
        <plugin>
          <artifactId>maven-javadoc-plugin</artifactId>
          <version>3.0.1</version>
          <executions>
            <execution>
              <id>aggregate</id>
              <phase>site</phase>
              <goals>
                <goal>aggregate</goal>
              </goals>
            </execution>
          </executions>
          <configuration>
            <links>
              <link>https://openjfx.io/javadoc/12/</link>
            </links>
          </configuration>
        </plugin>
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>exec-maven-plugin</artifactId>
          <version>1.3.2</version>
          <configuration>
            <skip>true</skip>
            <mainClass>de.gsi.chart.samples.RunChartSamples</mainClass>
          </configuration>
        </plugin>
        <plugin>
          <groupId>org.owasp</groupId>
          <artifactId>dependency-check-maven</artifactId>
          <version>5.3.1</version>
          <executions>
            <execution>
              <id>owaspcheck</id>
              <goals>
                <goal>check</goal>
              </goals>
            </execution>
          </executions>
          <configuration>
            <failBuildOnCVSS>8</failBuildOnCVSS>
            <suppressionFiles>dependency-check-suppressions.xml</suppressionFiles>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>flatten-maven-plugin</artifactId>
        <version>1.1.0</version>
        <executions>
          <execution>
            <id>flatten</id>
            <phase>process-resources</phase>
            <goals>
              <goal>flatten</goal>
            </goals>
          </execution>
          <execution>
            <id>flatten.clean</id>
            <phase>clean</phase>
            <goals>
              <goal>clean</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <updatePomFile>true</updatePomFile>
          <flattenMode>resolveCiFriendliesOnly</flattenMode>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar-no-fork</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>${chartfx.surefire.version}</version>
        <configuration>
          <argLine>${argLine} -Xms256m -Xmx2048m -XX:G1HeapRegionSize=32m -Djava.awt.headless=true -Dtestfx.robot=glass -Dtestfx.headless=true -Dprism.order=sw</argLine>
          <forkCount>1</forkCount>
          <runOrder>random</runOrder>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.jacoco</groupId>
        <artifactId>jacoco-maven-plugin</artifactId>
        <version>${chartfx.jacoco.version}</version>
        <executions>
          <execution>
            <goals>
              <goal>prepare-agent</goal>
            </goals>
          </execution>
          <execution>
            <id>report</id>
            <phase>test</phase>
            <goals>
              <goal>report</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <excludes></excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>release</id>
      <activation>
        <property>
          <name>release</name>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.5</version>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.sonatype.plugins</groupId>
            <artifactId>nexus-staging-maven-plugin</artifactId>
            <version>1.6.4</version>
            <extensions>true</extensions>
            <executions>
              <execution>
                <id>injected-nexus-deploy</id>
                <phase>deploy</phase>
                <goals>
                  <goal>deploy</goal>
                </goals>
                <configuration>
                  <serverId>ossrh</serverId>
                  <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                  <autoReleaseAfterClose>true</autoReleaseAfterClose>
                </configuration>
              </execution>
            </executions>
            <configuration>
              <serverId>ossrh</serverId>
              <nexusUrl>https://oss.sonatype.org/</nexusUrl>
              <autoReleaseAfterClose>true</autoReleaseAfterClose>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>
