jcommander icon indicating copy to clipboard operation
jcommander copied to clipboard

Maven Central Updates

Open mkarg opened this issue 5 years ago • 6 comments

I would be happy if jCommander 1.80 could be pushed to Maven Central. :-)

mkarg avatar Sep 01 '20 06:09 mkarg

@cbeust Please consider this issue. Thanks. :-)

mkarg avatar Sep 11 '20 21:09 mkarg

@cbeust Could you please at least clearly point out that you never will do that, so everybody knows what's the official project policy? Otherwise, I hereby offer that I will frequently upload all new releases on Maven Central in the name of this project, if you agree that I claim your group ID at Sonatype.

mkarg avatar Sep 29 '20 06:09 mkarg

Meanwhile jCommander 1.81 is published on Maven Central. I wonder why not pushing 1.80?

mkarg avatar Mar 28 '21 15:03 mkarg

1.83 is also missing from Maven Central.

daveloyall avatar Nov 29 '23 16:11 daveloyall

No it is not. You can find it here: https://central.sonatype.com/artifact/org.jcommander/jcommander/1.83.

mkarg avatar Nov 29 '23 18:11 mkarg

Ah, thanks for the link. That gave me the solution.. I had this in my pom..

		<dependency>
			<groupId>com.beust</groupId> <!-- WRONG -->
			<artifactId>jcommander</artifactId>
			<version>[1.82,)</version>
		</dependency>

And I was able to pull 1.83 after I switched to this:

		<dependency>
			<groupId>org.jcommander</groupId> <!-- Correct as of late 2023 -->
			<artifactId>jcommander</artifactId>
			<version>[1.82,)</version>
		</dependency>

Thanks, cheers!

daveloyall avatar Nov 29 '23 20:11 daveloyall