JavaFXSmartGraph icon indicating copy to clipboard operation
JavaFXSmartGraph copied to clipboard

Question: are there plans to make this available through Maven?

Open pedrovictori opened this issue 4 years ago • 3 comments

Hello, thank you very much for making this available, it is really useful. I'm using it in a Maven project, and it would be very convenient to have it available through a Maven repository. Do you have any plans for this? If not, that's completely fine, I was just wondering. Thank you!

pedrovictori avatar Mar 11 '20 00:03 pedrovictori

Seems very pertinent to do that.

However, I need to search how to best synchronize the sources here with a maven repository, as I haven't done that before.

Is there a simple way to refer maven artifacts to the contents of the release folder here on GitHub?

brunomnsilva avatar Mar 23 '20 15:03 brunomnsilva

Sorry I didn't reply sooner. You can set up something like this, so you host them as GitHub packages and deploy from Maven. You could also set a GitHub workflow so the package is automatically deployed with every new release. I recently did that for one of my repositories and it is a fairly simple process. I'm happy to help if needed.

pedrovictori avatar Jun 11 '20 19:06 pedrovictori

@brunomnsilva Check out this Github tutorial --> Publishing packages to GitHub Packages

amalic avatar Aug 05 '21 16:08 amalic

Finally! 😄 Here it is:

<dependency>
    <groupId>com.brunomnsilva</groupId>
    <artifactId>smartgraph</artifactId>
    <version>1.0.0</version>
</dependency>

brunomnsilva avatar May 04 '23 21:05 brunomnsilva