<?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">
    <parent>
        <artifactId>s2tbx-sta-adapters</artifactId>
        <groupId>org.esa.s2tbx</groupId>
        <version>6.0.0</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>sen2three</artifactId>
    <packaging>nbm</packaging>

    <name>Sentinel-2 SEN2THREE processor</name>
    <description>Sen2Three is a level 3 processor for the spatio temporal synthesis of bottom atmospheric corrected level 2A (or alternatively) uncorrected top of atmosphere level 1C images, retrieved by the Sentinel 2 Multi Spectral Instrument (MSI).
    </description>

    <build>
        <sourceDirectory>../src/main/java</sourceDirectory>
        <resources>
            <resource>
                <directory>resources</directory>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <includes>
                        <include>**/**</include>
                    </includes>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>nbm-maven-plugin</artifactId>
                <configuration combine.self="override">
                    <licenseFile>${project.basedir}/../../LICENSE.html</licenseFile>
                    <keystore>${project.basedir}/../../keystore/s2tbx.ks</keystore>
                    <keystorealias>snap</keystorealias>
                    <keystorepassword>snap-123</keystorepassword>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>