Skip to content

Commit

Permalink
ICU-22965 Fix the problems we had with the maven deploy for ICU 76.1
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mihnita committed Nov 13, 2024
1 parent 8b28c38 commit 06a23f8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions icu4j/main/charset/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
1 change: 1 addition & 0 deletions icu4j/main/icu4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
1 change: 1 addition & 0 deletions icu4j/main/localespi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
3 changes: 3 additions & 0 deletions icu4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 06a23f8

Please sign in to comment.