diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2023-09-24 19:31:44 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2023-09-24 19:31:44 +0200 |
commit | 5d9fff80436d2dbc8844bb4a73f7ff51ddebc02f (patch) | |
tree | 10253670f36119ef17247a8693d3aa3351cf1e30 | |
parent | 0d6c75ebe96bb1cb3cdfb05c08532d94906e9ebc (diff) |
fix(pom): Update Maven Central publishing settings.
- Switches from the expired RSA-4096 GnuPG key to my new EdDSA key.
- Enables legacy mode for Javadoc generation, which is necessary to
support the somewhat hacked-together JBoss Log Manager Embedded /
non-Embedded hybrid support.
- Updates the Maven Javadoc plugin to version 3.6.0.
Change-Id: Ic9ebb684e182a92d8b09f85cea829073ecdfd6d2
-rw-r--r-- | pom.xml | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -66,7 +66,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later <google-java-format.version>1.15.0</google-java-format.version> <jar-plugin.version>3.3.0</jar-plugin.version> <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> - <maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version> + <maven-javadoc-plugin.version>3.6.0</maven-javadoc-plugin.version> <maven-source-plugin.version>3.3.0</maven-source-plugin.version> <nexus-staging-plugin.version>1.6.13</nexus-staging-plugin.version> <spotless-plugin.version>2.39.0</spotless-plugin.version> @@ -244,6 +244,9 @@ SPDX-License-Identifier: LGPL-3.0-or-later <goals> <goal>jar</goal> </goals> + <configuration> + <legacyMode>true</legacyMode> + </configuration> </execution> </executions> </plugin> @@ -253,7 +256,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <configuration> - <keyname>code@mulk.eu</keyname> + <keyname>44DD0CEE515E547A0ABAB1D24F2E30DF0A270EFB</keyname> </configuration> <executions> <execution> |