-
|
Hi, On Maven Central there are versions 5.4.8 and 5.4.10, but 5.4.9 is missing: However, on GitHub I can see the 5.4.9 tag: Is this a bug during upload to Maven Central, and will this version appear again, or was it removed intentionally for some reason? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
|
@mkczyk Maven Central has stricter rules for publishing Maven artifacts than the JBoss Nexus has, see https://central.sonatype.org/publish/requirements/ This release is very likely not syncable to central due to some violation of the above and is only available in JBoss Nexus repository. We have fixed it since and everything is being synced to central now. e.g. you can just use <repositories>
<repository>
<id>jboss-nexus</id>
<name>JBoss Nexus Repository</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories> |
Beta Was this translation helpful? Give feedback.
-
|
Yes, 5.4.9 is missing, but more recent versions are listed on mvn central: [1]. [1] https://central.sonatype.com/artifact/org.jgroups/jgroups/versions |
Beta Was this translation helpful? Give feedback.
-
|
Hello Bela,
yes, this is because Sonatype implemented the browsing very poorly and it relies on generated database table, that does not always get the updates it should get. I will run the repair task, however it usually runs about 24 hours and during that time there might be problems with getting other stuff.
The files are there and if people use the version in their build, it would work for them, but the directory listing is incomplete.
David Hladky
Principal Software Engineer
XE R&D UXE Platform Engineering
mail: ***@***.***
… 26. 1. 2026 v 12:44, Radoslav Husar ***@***.***>:
That is strange, it's also missing from this browse UI... https://repository.jboss.org/nexus/#browse/browse:releases:org%2Fjgroups%2Fjgroups
@dhladky <https://github.com/dhladky> Can you help us understand why these versions are not browsable anywhere?
—
Reply to this email directly, view it on GitHub <#983 (reply in thread)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AATJLL3WJM4LHRLA2WOH6PL4IX4ZJAVCNFSM6AAAAACSWKRMMGVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKNRQGUZTKMY>.
You are receiving this because you were mentioned.
|
Beta Was this translation helpful? Give feedback.
-
|
Thanks for the clarification, David |
Beta Was this translation helpful? Give feedback.
@mkczyk Maven Central has stricter rules for publishing Maven artifacts than the JBoss Nexus has, see https://central.sonatype.org/publish/requirements/
This release is very likely not syncable to central due to some violation of the above and is only available in JBoss Nexus repository.
We have fixed it since and everything is being synced to central now.
e.g. you can just use