-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Bintray will shutdown in May 1st 2021 #102
Comments
Is there an alternate place where we can point maven now that bintray is down? |
Maybe jitpack will be the solution for temporary. repositories {
mavenCentral()
maven {
url "https://jitpack.io"
}
}
dependencies {
implementation 'com.github.kevin-wayne:algs4:master-SNAPSHOT'
} Maven can also work with jitpack. |
Sounds great! As far as I've seen, JitPack works with GitHub Releases or Git tags, so I think it'd be easier to just create the tags or GitHub Releases and rely on JitPack instead. |
Why not just publish to Maven Central and call it good, instead of nonstandard repos that may go away any day? |
If someone wants to volunteer to setup a Maven Central library, make me a co-admin, and setup a workflow to keep it relatively up-to-date, I'm happy to endorse/link from here. I haven't used Maven. |
@kevin-wayne Part of the process to publish to Maven Central requires setting up a temporary redirect rule for the domain the package is published under. It appears that this repo is currently using I’m familiar with the publishing process and have published my own OSS to Maven Central. I can help with this process, but as I mentioned, will most likely need to be granted collaborator access. I’ll take a look and post back with more information this week. Note that the domain is only for Maven, the code can continue to use the existing package, although I’ll say that can be pretty confusing. |
I'd like to keep the edu.princeton.cs.algs4 package name. I don't have admin access to |
IMHO, Whichever option you choose, please create a Sonatype JIRA ticket by cloning from the ticket I linked to above. Once verification is complete, you'll be given a username/password, using which we will be able to publish to Maven Central. There's a fair bit of plumbing needed to do that automatically from GitHub, but I can help with that, and no external support should be needed for that. |
@kevin-wayne Why not just keep it simple and using
FYI: <repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.kevin-wayne</groupId>
<artifactId>algs4</artifactId>
<version>-SNAPSHOT</version>
</dependency> Footnotes
|
Is there a solution meanwhile? It seems the package is not available anymore, I've included it like this in gradle for around 4 year now:
|
Bintray service will be shutdown in May 1st 2021: Into the Sunset on May 1st: Bintray, JCenter, GoCenter, and ChartCenter
Is there any plan to publish the library in Maven Central or another repository?
The text was updated successfully, but these errors were encountered: