zerodds-java-omgdds 1.0.0-rc.3

Native Java DDS-PSM scaffolding (org.omg.dds.* package)
Documentation
<?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>org.zerodds</groupId>
    <artifactId>omgdds</artifactId>
    <version>0.0.0</version>
    <packaging>jar</packaging>

    <name>ZeroDDS Native Java-PSM (org.omg.dds)</name>
    <description>Pure-Java implementation of the OMG DDS Java-PSM 1.0 — no JNI required. Spec formal/2013-07-01.</description>
    <url>https://zerodds.org</url>

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

    <developers>
        <developer>
            <id>zerodds</id>
            <name>ZeroDDS Contributors</name>
            <email>hello@zerodds.org</email>
            <organization>ZeroDDS</organization>
            <organizationUrl>https://zerodds.org</organizationUrl>
        </developer>
    </developers>

    <scm>
        <url>https://github.com/zero-objects/zero-dds</url>
        <connection>scm:git:https://github.com/zero-objects/zero-dds.git</connection>
        <developerConnection>scm:git:git@github.com:zero-objects/zero-dds.git</developerConnection>
        <tag>HEAD</tag>
    </scm>

    <issueManagement>
        <system>GitHub Issues</system>
        <url>https://github.com/zero-objects/zero-dds/issues</url>
    </issueManagement>

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

    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <version>5.10.2</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>3.2.5</version>
            </plugin>
        </plugins>
    </build>

    <!--
        release profile: active only on `mvn -Prelease deploy`.
        Maven Central requires javadoc.jar, sources.jar and GPG signatures.
        central-publishing-maven-plugin uses the modern Sonatype Central Portal.
    -->
    <profiles>
        <!-- Java 8 compat mode: `mvn -Pjava8 install` builds the runtime against
             Java 8 (source/target 8). The hand-written code is var-free (only
             Lambdas/Consumer/default methods = Java 8). Generated code must
             be produced with the `java8_compat` codegen (unions as abstract
             class instead of sealed interface + record). Standard build stays 17. -->
        <profile>
            <id>java8</id>
            <properties>
                <!-- Only the shipped main artifact down to Java 8.
                     Tests stay at 17 and run on the build JVM (one
                     test helper uses a record). -->
                <maven.compiler.source>8</maven.compiler.source>
                <maven.compiler.target>8</maven.compiler.target>
                <maven.compiler.testSource>17</maven.compiler.testSource>
                <maven.compiler.testTarget>17</maven.compiler.testTarget>
            </properties>
        </profile>
        <profile>
            <id>release</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-source-plugin</artifactId>
                        <version>3.3.1</version>
                        <executions>
                            <execution>
                                <id>attach-sources</id>
                                <goals>
                                    <goal>jar-no-fork</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-javadoc-plugin</artifactId>
                        <version>3.7.0</version>
                        <executions>
                            <execution>
                                <id>attach-javadocs</id>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>3.2.4</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                                <configuration>
                                    <gpgArguments>
                                        <arg>--pinentry-mode</arg>
                                        <arg>loopback</arg>
                                    </gpgArguments>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.sonatype.central</groupId>
                        <artifactId>central-publishing-maven-plugin</artifactId>
                        <version>0.5.0</version>
                        <extensions>true</extensions>
                        <configuration>
                            <publishingServerId>central</publishingServerId>
                            <autoPublish>true</autoPublish>
                            <waitUntil>published</waitUntil>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>