UndecoratorBis
UndecoratorBis copied to clipboard
Solution on how to publish a Release of UndecoratorBis.jar so we can use it with JitPack + Maven,Gradle etc
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>
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.