juliarn / npc-lib

Asynchronous, high-performance Minecraft NPC library for 1.8-1.21 servers.
MIT License
296 stars 50 forks source link

Maven Repository #92

Closed plytki closed 1 year ago

plytki commented 1 year ago

Is there any Maven repo for V3? I want to include V3 in my project, but I don't know how I am supposed to do it.

vytskalt commented 1 year ago

you can include it through jitpack

derklaro commented 1 year ago

I mirror the dependency on https://repository.derklaro.dev/ as well if you don't want to rely on jitpack only :)

plytki commented 1 year ago

Thank you! I used this repo and dependency and it works:

<repository>
            <id>derklaro-repo</id>
            <name>Derklaro-Repository</name>
            <url>https://repository.derklaro.dev/{repository}</url>
</repository>

<dependency>
            <groupId>com.github.juliarn</groupId>
            <artifactId>npc-lib</artifactId>
            <version>3.0.0-beta3</version>
</dependency>