in-sideFX / UndecoratorBis

A new version of my JavaFX window decoration API. This time focused on the transparency and non-rectangular window.
https://arnaudnouard.wordpress.com
BSD 2-Clause "Simplified" License
96 stars 16 forks source link

Solution on how to publish a Release of UndecoratorBis.jar so we can use it with JitPack + Maven,Gradle etc #10

Open goxr3plus opened 6 years ago

goxr3plus commented 6 years ago

The procedure is really easy just publish a release with the jar file of your library -> https://github.com/in-sideFX/UndecoratorBis/releases

Then we can use it with Maven , Gradle etc via JitPack.io like this below

Check this link ( https://jitpack.io/#in-sideFX/UndecoratorBis ) please

<repositories>
      <repository>
       <id>jitpack.io</id>
       <url>https://jitpack.io</url>
     </repository>
</repositories>
<dependency>
   <groupId>com.github.User</groupId>
   <artifactId>Repo</artifactId>
   <version>Tag</version>
</dependency>
aalmiray commented 6 years ago

There's no need to publish a release if JitPack is in place. JitPack will build a snapshot given a particular Git hash. You can use that snapshot as if it were a release.