mmocore/README.md

40 lines
1.0 KiB
Markdown
Raw Normal View History

2022-08-16 11:28:53 +02:00
Official repository for MMOCore
2020-09-11 04:31:08 +02:00
2023-11-04 15:29:34 +01:00
### Useful Links
- Purchase the plugin here: https://www.spigotmc.org/resources/mmocore.70575/
- Development builds: https://phoenixdevt.fr/devbuilds
- Official documentation: https://gitlab.com/phoenix-dvpmt/mmocore/-/wikis/home
- Discord Support: https://phoenixdevt.fr/discord
- Other plugins: https://www.spigotmc.org/resources/authors/indyuce.253965/
2022-08-16 11:28:53 +02:00
### Using MMOCore as dependency
2023-11-04 15:29:34 +01:00
Register the PhoenixDevelopment public repository:
2022-08-16 11:28:53 +02:00
```
<repository>
<id>phoenix</id>
2023-05-09 10:07:35 +02:00
<url>https://nexus.phoenixdevt.fr/repository/maven-public/</url>
2022-08-16 11:28:53 +02:00
</repository>
```
2023-11-04 15:29:34 +01:00
And then add both `MythicLib-dist` and `MMOCore-API` as dependencies:
2022-08-16 11:28:53 +02:00
```
2023-11-04 15:29:34 +01:00
<dependency>
<groupId>io.lumine</groupId>
<artifactId>MythicLib-dist</artifactId>
<version>1.6.2-SNAPSHOT</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
2022-08-16 11:28:53 +02:00
<dependency>
<groupId>net.Indyuce</groupId>
<artifactId>MMOCore-API</artifactId>
2023-11-04 15:29:34 +01:00
<version>1.12.1-SNAPSHOT</version>
2022-08-16 11:28:53 +02:00
<scope>provided</scope>
</dependency>
```