Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maven Central Updates #499

Open
mkarg opened this issue Sep 1, 2020 · 6 comments
Open

Maven Central Updates #499

mkarg opened this issue Sep 1, 2020 · 6 comments

Comments

@mkarg
Copy link
Collaborator

mkarg commented Sep 1, 2020

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

@mkarg
Copy link
Collaborator Author

mkarg commented Sep 11, 2020

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

@mkarg
Copy link
Collaborator Author

mkarg commented Sep 29, 2020

@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
Copy link
Collaborator Author

mkarg commented Mar 28, 2021

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

@daveloyall
Copy link

1.83 is also missing from Maven Central.

@mkarg
Copy link
Collaborator Author

mkarg commented Nov 29, 2023

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

@daveloyall
Copy link

daveloyall commented Nov 29, 2023

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants