Skip to content

Commit 06a23f8

Browse files
committed
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.
1 parent 8b28c38 commit 06a23f8

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

icu4j/main/charset/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
</parent>
1414

1515
<artifactId>icu4j-charset</artifactId>
16+
<name>ICU4J Charset Provider</name>
1617
<description>icu4j-charset is a supplemental library for icu4j, implementing Java Charset SPI.</description>
1718
<url>${proj.url}</url>
1819
<scm>

icu4j/main/icu4j/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
</parent>
1515

1616
<artifactId>icu4j</artifactId>
17+
<name>ICU4J</name>
1718
<description>International Components for Unicode for Java (ICU4J) is a mature, widely used Java library
1819
providing Unicode and Globalization support</description>
1920
<url>${proj.url}</url>

icu4j/main/localespi/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
</parent>
1414

1515
<artifactId>icu4j-localespi</artifactId>
16+
<name>ICU4J Locale Service Provider</name>
1617
<description>icu4j-localespi is a supplemental library for icu4j, implementing Java Locale SPI.</description>
1718
<url>${proj.url}</url>
1819
<scm>

icu4j/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,9 @@
235235
<plugin>
236236
<artifactId>maven-deploy-plugin</artifactId>
237237
<version>3.1.3</version>
238+
<configuration>
239+
<skip>true</skip>
240+
</configuration>
238241
</plugin>
239242
<plugin>
240243
<artifactId>maven-site-plugin</artifactId>

0 commit comments

Comments
 (0)