Can I depend on dev builds? #2974
AlbusThePenguin
started this conversation in
General
Replies: 2 comments
-
When I want to depend on a dev build of ProtocolLib, I use Jitpack and specify the commit hash: <repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.dmulloy2</groupId>
<artifactId>ProtocolLib</artifactId>
<version>1e3fa2d36e</version>
<scope>provided</scope>
</dependency> Some builds don't work sometimes, but for development is good enough. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey can't find any information on dev builds using maven. The version does not work when I try using SNAPSHOT versions, and unsure how I can use the correct version for the latest dev build in my projects?
Beta Was this translation helpful? Give feedback.
All reactions