UndecoratorBis icon indicating copy to clipboard operation
UndecoratorBis copied to clipboard

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

Open goxr3plus opened this issue 7 years ago • 1 comments

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>

goxr3plus avatar Nov 08 '17 21:11 goxr3plus

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.

aalmiray avatar Nov 08 '17 22:11 aalmiray