<?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>

    <parent>
        <groupId>net.moodia.plugins</groupId>
        <artifactId>plugin</artifactId>
        <version>2.3</version>
    </parent>

    <groupId>net.moodia.plugins.framework</groupId>
    <artifactId>plugin-framework</artifactId>

    <name>Moodia Plugin Framework</name>
    <description>DEPRECATED — legacy plugin framework runtime for the Wiresphere container
        (Nashorn era). Retained for binary compatibility; not under active development.</description>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <spring-boot.vesion>2.5.0</spring-boot.vesion>
    </properties>

    <dependencies>
        <dependency>
            <groupId>net.moodia.plugins.api</groupId>
            <artifactId>plugin-api</artifactId>
            <version>2.3</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <version>${spring-boot.vesion}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
            <version>${spring-boot.vesion}</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>11</source>
                    <target>11</target>
                </configuration>
                <version>3.8.1</version>
            </plugin>
        </plugins>
    </build>

</project>
