<?xml version="1.0" encoding="UTF-8"?>
<!--

    Copyright Terracotta, Inc.

    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>
    <artifactId>terracotta-management</artifactId>
    <groupId>org.terracotta.management</groupId>
    <version>5.8.0-pre8</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>

  <artifactId>sequence-generator</artifactId>
  <name>Terracotta Management :: Sequence Generator</name>

  <build>
    <plugins>
      <!--
        IDEs are not supporting forge when parsing the maven model so we have to duplicate the section.
        This section is used when running tests from Maven CLI
        See: https://github.com/Terracotta-OSS/terracotta-platform/issues/673
      -->
      <plugin>
        <groupId>org.terracotta</groupId>
        <artifactId>maven-forge-plugin</artifactId>
        <configuration>
          <reuseForks>false</reuseForks>
          <argLine>
            -Dorg.terracotta.management.sequence.NodeIdSource=org.terracotta.management.sequence.MyNodeIdSource
            -Dorg.terracotta.management.sequence.TimeSource=org.terracotta.management.sequence.MyTimeSource
          </argLine>
        </configuration>
      </plugin>
      <!--
        IDEs are not supporting forge when parsing the maven model so we have to duplicate the section
        This section is used when running tests from the IDE
        See: https://github.com/Terracotta-OSS/terracotta-platform/issues/673
      -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <reuseForks>false</reuseForks>
          <argLine>
            -Dorg.terracotta.management.sequence.NodeIdSource=org.terracotta.management.sequence.MyNodeIdSource
            -Dorg.terracotta.management.sequence.TimeSource=org.terracotta.management.sequence.MyTimeSource
          </argLine>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifest>
              <mainClass>org.terracotta.management.sequence.perf.PerfTest</mainClass>
            </manifest>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

</project>