mmocore/README.md
2023-11-04 15:29:34 +01:00

1.0 KiB

Official repository for MMOCore

Using MMOCore as dependency

Register the PhoenixDevelopment public repository:

<repository>
    <id>phoenix</id>
    <url>https://nexus.phoenixdevt.fr/repository/maven-public/</url>
</repository>

And then add both MythicLib-dist and MMOCore-API as dependencies:

<dependency>
    <groupId>io.lumine</groupId>
    <artifactId>MythicLib-dist</artifactId>
    <version>1.6.2-SNAPSHOT</version>
    <scope>provided</scope>
    <optional>true</optional>
</dependency>

<dependency>
    <groupId>net.Indyuce</groupId>
    <artifactId>MMOCore-API</artifactId>
    <version>1.12.1-SNAPSHOT</version>
    <scope>provided</scope>
</dependency>