<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>io.revealbi</groupId>
    <artifactId>reveal-sdk-root</artifactId>
    <version>2.0.0</version>
    <packaging>pom</packaging>

    <properties>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <proget.repo.url>http://proget.infragistics.local:81/feeds/reveal-sdk-temp</proget.repo.url>
    </properties>

    <modules>
        <module>reveal-sdk-core</module>
        <module>reveal-sdk-servlet</module>
        <module>reveal-sdk-engine-windows-x86_64</module>
        <module>reveal-sdk-engine-windows-aarch64</module>
        <module>reveal-sdk-engine-linux-x86_64</module>
        <module>reveal-sdk-engine-linux-aarch64</module>
        <module>reveal-sdk-engine-mac-aarch64</module>
        <module>reveal-sdk-engine-mac-x86_64</module>
        <module>dev-samples</module>
    </modules>

    <distributionManagement>
        <repository>
            <id>reveal.public</id>
            <url>https://maven.revealbi.io/repository/release-stage</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
        <snapshotRepository>
            <id>reveal.internal</id>
            <url>https://maven.revealbi.io/repository/snapshots</url>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </snapshotRepository>
    </distributionManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>3.6.3</version>
                <configuration>
                    <source>17</source>
                    <encoding>UTF-8</encoding>
                    <doctitle>Reveal BI Java SDK - API</doctitle>
                    <windowtitle>Reveal BI Java SDK - API</windowtitle>
                    <bottom><![CDATA[&#169; Copyright 2019-{currentYear} <a href="https://revealbi.io">INFRAGISTICS. All Rights Reserved.</a>]]></bottom>
                    <addStylesheets>
                        <addStylesheet>reveal-colors.css</addStylesheet>
                    </addStylesheets>
                    <skippedModules>dev-samples,reveal-sdk-engine-windows-x86_64,reveal-sdk-engine-windows-aarch64,reveal-sdk-engine-linux-x86_64,reveal-sdk-engine-linux-aarch64,reveal-sdk-engine-mac-aarch64,reveal-sdk-engine-mac-x86_64</skippedModules>
                    <quiet>true</quiet>
                    <failOnError>false</failOnError>
                    <tags>
                        <tag>
                            <name>apiNote</name>
                            <placement>a</placement>
                            <head>API Note:</head>
                        </tag>
                        <tag>
                            <name>implSpec</name>
                            <placement>a</placement>
                            <head>Implementation Requirements:</head>
                        </tag>
                        <tag>
                            <name>implNote</name>
                            <placement>a</placement>
                            <head>Implementation Note:</head>
                        </tag>
                    </tags>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>