Raudius / Pushraven

A simple Java library to interface with Firebase Cloud Messaging (FCM) API. Pushraven allows you to push notifications to clients in very few lines of code.
MIT License
78 stars 34 forks source link

Maven publication? #9

Closed maxmumford closed 7 years ago

maxmumford commented 7 years ago

I'm happily using this lil lib in production, works nicely, thanks! Any plans for Maven publication though? It makes deploying to platforms like Heroku much easier - I'd prefer not to have to commit your jar into VC.

Max

Raudius commented 7 years ago

I never originally intended this to be adopted by anyone bar myself for minor projects. But given the interest I will look into publishing it to a maven repo this weekend.

maxmumford commented 7 years ago

That would be fantastic, thanks. Of all of the FCM libs I've seen it has by far the most succinct API and configuration, so thanks for your work.

Raudius commented 7 years ago

I found some time to do it tonight. You should be able to add it as a dependency now using:

<dependency>
  <groupId>us.raudi.pushraven</groupId>
  <artifactId>Pushraven</artifactId>
  <version>1.0.1</version>
</dependency>

**Note that I had to change the package name to abide by the namespace allocation rules for the Central Repo. So you will have to change your imports to us.raudi.pushraven.***

maxmumford commented 7 years ago

Works a treat, thanks for your help :)