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

Publish packages in Maven Central #32

Open
mk868 opened this issue Nov 28, 2024 · 6 comments
Open

Publish packages in Maven Central #32

mk868 opened this issue Nov 28, 2024 · 6 comments

Comments

@mk868
Copy link
Contributor

mk868 commented Nov 28, 2024

The publishing to maven central topic has happened several times before (#7 #6).

Why this proposal again?
Libraries that are in Maven Central cannot have dependencies on libraries in other repositories (like JitPack).
So if any library located in Maven Central wants to use java-multibase then it simply cannot.

So, I propose to publish library to the Maven Central.
I did such publishing myself some time ago and the process turns out to be simple.
Of course I want to support with that, I can create an action on GitHub with the deployment (just a few simple steps in the .yml file) and show how it works on my forked repo.

What do you think?

@ianopolous
Copy link
Member

Sure that would be great, thanks!

@vorburger
Copy link
Contributor

The thing to keep in mind here is that someone needs to own and responsibly manage, and possibly in the future share with other maintainers, the PGP private key for deploying into io.ipfs.multibase on Maven Central. I'm not sure what the best way is to manage that.

@mk868
Copy link
Contributor Author

mk868 commented Jan 7, 2025

We can generate a new PGP key, only for deployment to Maven Central, and store the private key in the project's secret variables.
Then the deployment process will be done by GitHub action by users with the necessary permissions.
With that we will reduce the possibility of private key leakage.

@mk868
Copy link
Contributor Author

mk868 commented Jan 7, 2025

Worth to note:
@vorburger You mentioned about io.ipfs.multibase groupId on Maven Central.

For compatibility reasons we may prefer to stay with com.github.multiformats groupId, then the migration path from JitPack to Maven Central would be straightforward for users/projects - most won't notice the difference that the library was loaded from Maven Central and not from JitPack.
Also we would avoid the situation where users have both io.ipfs.multibase and com.github.multiformats artifacts in the class path.
However, as of April 2021, com.github.* group ids will not be accepted.

So, to publish java-multibase to the Maven Central we will need to change the groupId...

To mitigate the problem with duplicated artifacts in the classpath, we can release a new dummy (.jar without any .class files) version of the com.github.multiformats artifact on jitpack.io with single dependency: io.ipfs.multibase.

@mk868
Copy link
Contributor Author

mk868 commented Jan 15, 2025

To summarize, migrating libraries from JitPack (which may not be so reliable) to Maven Central will require a change in the groupId.

The proposed changes are outlined in the table below:

Project Current groupId:artifactId Proposed groupId:artifactId
java-cid com.github.ipld:java-cid io.ipfs.multiformats:cid
java-multibase com.github.multiformats:java-multibase io.ipfs.multiformats:multibase
java-multiaddr com.github.multiformats:java-multiaddr io.ipfs.multiformats:multiaddr
java-multihash com.github.multiformats:java-multihash io.ipfs.multiformats:multihash

As mentioned earlier, we can simplify the migration by redirecting JitPack artifacts to Maven Central ones using an empty artifact with a dependency, e.g., redirecting com.github.multiformats:java-multibase to io.ipfs.multiformats:multibase.

However, implementing this change will require a decision at a higher project level.

@vorburger
Copy link
Contributor

Just noticed https://mvnrepository.com/artifact/com.github.multiformats/java-multibase/1.1.1 by https://scijava.org

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

3 participants