ICU-22965 Fix the problems we had with the maven deploy for ICU 76.1

The blocker was the missing `<name>` element, which is mandatory
See https://central.sonatype.org/publish/requirements/#project-name-description-and-url

The second problem was that all modules were staged, not just the three we normally publish.
This commit is contained in:
Mihai Nita 2024-11-12 15:08:44 -08:00
parent 8b28c3843f
commit 06a23f8d37
4 changed files with 6 additions and 0 deletions

View file

@ -13,6 +13,7 @@
</parent>
<artifactId>icu4j-charset</artifactId>
<name>ICU4J Charset Provider</name>
<description>icu4j-charset is a supplemental library for icu4j, implementing Java Charset SPI.</description>
<url>${proj.url}</url>
<scm>

View file

@ -14,6 +14,7 @@
</parent>
<artifactId>icu4j</artifactId>
<name>ICU4J</name>
<description>International Components for Unicode for Java (ICU4J) is a mature, widely used Java library
providing Unicode and Globalization support</description>
<url>${proj.url}</url>

View file

@ -13,6 +13,7 @@
</parent>
<artifactId>icu4j-localespi</artifactId>
<name>ICU4J Locale Service Provider</name>
<description>icu4j-localespi is a supplemental library for icu4j, implementing Java Locale SPI.</description>
<url>${proj.url}</url>
<scm>

View file

@ -235,6 +235,9 @@
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.3</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>