<?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
                             https://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>dev.ferol</groupId>
    <artifactId>pymapp-tool-singleinstanceapp</artifactId>
    <version>1.6.2</version>
    <packaging>jar</packaging>    

    <name>PyMApp Tool - SingleInstanceApp</name>

    <description>
        A lightweight Java library that guarantees a single running instance of a desktop application. SingleInstanceApp allows secondary application launches to communicate with the primary instance, optionally restoring its main window and forwarding command-line arguments. It has no external dependencies and can be used completely standalone.
    </description>

    <url>https://github.com/feroldev/PyMApp_tool_SingleInstanceApp</url>

    <inceptionYear>2025</inceptionYear>

    <licenses>
        <license>
            <name>Apache License 2.0</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <developers>
        <developer>
            <id>feroldev</id>
            <name>feroldev</name>
            <url>https://ferol.dev</url>
            <roles>
                <role>Founder</role>
                <role>Developer</role>
            </roles>
            <timezone>-3</timezone>
        </developer>
    </developers>

    <scm>
        <connection>
            scm:git:https://github.com/feroldev/PyMApp_tool_SingleInstanceApp.git
        </connection>

        <developerConnection>
            scm:git:ssh://git@github.com/feroldev/PyMApp_tool_SingleInstanceApp.git
        </developerConnection>

        <url>
            https://github.com/feroldev/PyMApp_tool_SingleInstanceApp
        </url>

        <tag>v1.6.2</tag>
    </scm>

    <issueManagement>
        <system>GitHub Issues</system>
        <url>
            https://github.com/feroldev/PyMApp_tool_SingleInstanceApp/issues
        </url>
    </issueManagement>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    </properties>

</project>
