<?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.api</groupId>
    <artifactId>plugin-api</artifactId>

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

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

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

</project>
