mmoitems/README.md

40 lines
1.0 KiB
Markdown
Raw Normal View History

2023-11-04 15:31:41 +01:00
Official repository for MMOItems
### Useful Links
- Purchase the plugin here: https://www.spigotmc.org/resources/mmoitems.39267/
- Development builds: https://phoenixdevt.fr/devbuilds
- Official documentation: https://gitlab.com/phoenix-dvpmt/mmoitems/-/wikis/home
- Discord Support: https://phoenixdevt.fr/discord
- Other plugins: https://www.spigotmc.org/resources/authors/indyuce.253965/
2020-09-11 04:27:58 +02:00
2022-08-16 12:42:08 +02:00
### Using MMOItems as dependency
2023-11-04 15:31:41 +01:00
Register the PhoenixDevelopment public repository:
2022-08-16 12:42:08 +02:00
```
<repository>
<id>phoenix</id>
2023-05-07 23:40:58 +02:00
<url>https://nexus.phoenixdevt.fr/repository/maven-public/</url>
2022-08-16 12:42:08 +02:00
</repository>
```
2023-11-04 15:31:41 +01:00
And then add both `MythicLib-dist` and `MMOItems-API` as dependencies:
2022-08-16 12:42:08 +02:00
```
2023-11-04 15:31:41 +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 12:42:08 +02:00
<dependency>
<groupId>net.Indyuce</groupId>
<artifactId>MMOItems-API</artifactId>
2023-11-04 15:31:41 +01:00
<version>6.9.5-SNAPSHOT</version>
2022-08-16 12:42:08 +02:00
<scope>provided</scope>
</dependency>
```