michaelklishin / quartz-mongodb

A MongoDB-based store for the Quartz scheduler. This fork strives to be as feature complete as possible. Originally by MuleSoft.
Other
247 stars 199 forks source link

Repository now that bintray shut down ? #217

Open Folofietre opened 3 years ago

Folofietre commented 3 years ago

Now that bintray shut down, this repository doesn't work anymore :
`

michaelklishin
    <url>https://dl.bintray.com/michaelklishin/maven/</url>
</repository>

` Is there a new one ?

zoom2arun commented 3 years ago

Same issue here. Please confirm if there is a new home where this is migrated?

nolines commented 3 years ago

Same here.

Folofietre commented 3 years ago

@michaelklishin any new about migrating the artifact repository ?

Folofietre commented 3 years ago

As a temporary solution, I forked this repo and followed the doc : https://docs.gitlab.com/ee/user/packages/maven_repository/#publish-a-package

arthursb14 commented 3 years ago

Same here.

grenader commented 3 years ago

@michaelklishin, It would be nice if you upload new versions to Maven Central or Clojars

antpaw commented 3 years ago

I really hope a more permanent solution can be worked out here. I was able to fetch it form jitpack.io

    <repositories>
        <repository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </repository>
    </repositories>

    <dependency>
        <groupId>com.github.michaelklishin</groupId>
        <artifactId>quartz-mongodb</artifactId>
        <version>2.1.0</version>
    </dependency>

you might want to fork and login to jitpack

WakeCaine commented 3 years ago

Solution would be to publish to Maven Central but that carries some work behind it and pretty much nobody but @michaelklishin or any authorized person by him, cant do. Or somebody could take the handle over and make fork of this fork and publish it. Personally for our use we will most likely either publish on "our"(company) maven for private use or switch to sql version.

fluidsonic commented 3 years ago

As there is no activity in this project I've forked and published it ​using my own group on Maven Central. No need for any code changes as the Java package names stay the same.

It's available under io.fluidsonic.mirror:quartz-mongodb:2.1.0 and io.fluidsonic.mirror:quartz-mongodb:2.2.0-rc2.

The fork was made only for publishing. I'm not taking over as maintainer ;)

I hope @michaelklishin can publish it to Maven Central soon. Feel free to copy my Gradle publishing configuration and set up OSSRH for your own domain.