<?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>
    <packaging>pom</packaging>

    <groupId>com.flowlogix.payara</groupId>
    <artifactId>payara</artifactId>
    <version>5.2022.5.jdk21</version>

    <name>Payara 5 Repackaged</name>
    <description>Payara 5 Repackaged with latest asm and eclipselink libraries</description>
    <url>https://payara.fish</url>

    <licenses>
        <license>
            <name>CDDL</name>
            <url>https://raw.githubusercontent.com/payara/Payara/master/LICENSE.txt</url>
        </license>
    </licenses>

    <developers>
        <developer>
            <id>payara</id>
            <name>Payara Foundation</name>
            <email>info@payara.fish</email>
            <organization>Payara Foundation</organization>
            <organizationUrl>https://payara.fish</organizationUrl>
        </developer>
    </developers>

    <scm>
        <url>https://github.com/payara/Payara/tree/main</url>
        <connection>scm:git:git://github.com/payara/Payara.git</connection>
        <developerConnection>scm:git:git@github.com:payara/Payara.git</developerConnection>
    </scm>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <version>3.5.0</version>
                <executions>
                    <execution>
                        <id>attach-zip</id>
                        <phase>package</phase>
                        <goals>
                            <goal>attach-artifact</goal>
                        </goals>
                        <configuration>
                            <artifacts>
                                <artifact>
                                    <file>payara-${project.version}.zip</file>
                                    <type>zip</type>
                                </artifact>
                            </artifacts>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.simplify4u.plugins</groupId>
                <artifactId>sign-maven-plugin</artifactId>
                <version>1.1.0</version>
                <configuration>
                    <serverId>Flow Logix, Inc.</serverId>
                    <skipNoKey>false</skipNoKey>
                </configuration>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
